wxMemoryOutputStreamDerived from Include files <wx/mstream.h> See also Members
wxMemoryOutputStream::wxMemoryOutputStream
wxMemoryOutputStream::wxMemoryOutputStreamwxMemoryOutputStream(char * data = NULL, size_t length = 0) If data is NULL, then it will initialize a new empty buffer which will grow if required. Warning If the buffer is created, it will be destroyed at the destruction of the stream.
wxMemoryOutputStream::~wxMemoryOutputStream~wxMemoryOutputStream() Destructor.
wxMemoryOutputStream::CopyTosize_t CopyTo(char *buffer, size_t len) const CopyTo allowed you to transfer data from the internal buffer of wxMemoryOutputStream to an external buffer. len specifies the size of the buffer. Returned value CopyTo returns the number of bytes copied to the buffer. Generally it is either len or the size of the stream buffer.
wxMemoryOutputStream::GetOutputStreamBufferwxStreamBuffer * GetOutputStreamBuffer() const Returns the pointer to the stream object used as an internal buffer for that stream.
|