+#include <PxIO.h>
+
+

Public Member Functions | |
| virtual uint32_t | write (const void *src, uint32_t count)=0 |
| write to the stream. The number of bytes written may be less than the number sent. | |
| virtual | ~PxOutputStream () |
+The user needs to supply a PxOutputStream implementation to a number of methods to allow the SDK to write data.
| virtual PxOutputStream::~PxOutputStream | +( | ++ | ) | + [inline, virtual] |
+
+ +
+
| virtual uint32_t PxOutputStream::write | +( | +const void * | +src, | +|
| + | + | uint32_t | +count | + |
| + | ) | + [pure virtual] |
+
+write to the stream. The number of bytes written may be less than the number sent. +
+
| [in] | src | the destination address from which the data will be written |
| [in] | count | the number of bytes to be written |
Implemented in PxDefaultMemoryOutputStream, and PxDefaultFileOutputStream.
+ ++