Unigine::Stream Class
UNIGINE | UNIGINE 2.0 | Comments |
---|---|---|
virtual int read(void * ptr, int size) const =0 | virtual size_t read(void * ptr, size_t size) const =0 | Reads the number of bytes from the stream. |
virtual int write(const void * ptr, int size) const =0 | virtual size_t write(const void * ptr, size_t size) const =0 | Writes the number of bytes to the stream. |
virtual int readStream(const Ptr<Stream> & dest, int size) const =0 | virtual size_t readStream(const Ptr<Stream> & dest, size_t size) const =0 | Reads the number of bytes directly from the stream. |
virtual int writeStream(const Ptr<Stream> & src, int size) const =0 | virtual size_t writeStream(const Ptr<Stream> & src, size_t size) const =0 | Writes the number of bytes directly to the stream. |
- | virtual String readLine() const =0 | Reads a line from the stream. |
- | virtual int readLine(char * str, int size) const =0 | Reads a line from the stream. |
- | virtual String gets() const =0 | Reads the stream data from the current position |
- | virtual int puts(const char * str) const =0 | Writes a string of characters to the stream. |
- | virtual int isError() const =0 | Returns the status of the stream. |
Last update: 2017-07-03
Help improve this article
Was this article helpful?
(or select a word/phrase and press Ctrl+Enter)