|
PoDoFo 1.1.0
|
This class represents an input device It optionally supports peeking. More...
#include <InputDevice.h>
Public Member Functions | |
| bool | Peek (char &ch) const |
| Peek at next char in stream. | |
Public Member Functions inherited from PoDoFo::InputStream | |
| void | Read (char *buffer, size_t size) |
| Read data from the device. | |
| size_t | Read (char *buffer, size_t size, bool &eof) |
| Read data from the device. | |
| char | ReadChar () |
| Get next char from stream. | |
| bool | Read (char &ch) |
| Get next char from stream. | |
| void | CopyTo (OutputStream &stream) |
| Copy this stream to another. | |
| void | CopyTo (OutputStream &stream, size_t size) |
| Copy this stream to another. | |
Protected Member Functions | |
| InputStreamDevice (bool init) | |
| virtual bool | peek (char &ch) const =0 |
| Peek at next char in stream. | |
| void | checkRead () const override |
| Optional checks before reading By default does nothing. | |
Protected Member Functions inherited from PoDoFo::InputStream | |
| virtual size_t | readBuffer (char *buffer, size_t size, bool &eof)=0 |
| Read a buffer from the stream /param eof true if the stream reached eof during read /returns number of read bytes. | |
| virtual bool | readChar (char &ch) |
| Read the next char in stream. | |
Additional Inherited Members | |
Static Protected Member Functions inherited from PoDoFo::InputStream | |
| static size_t | ReadBuffer (InputStream &stream, char *buffer, size_t size, bool &eof) |
| static bool | ReadChar (InputStream &stream, char &ch) |
This class represents an input device It optionally supports peeking.
|
overrideprotectedvirtual |
Optional checks before reading By default does nothing.
Reimplemented from PoDoFo::InputStream.
Peek at next char in stream.
/returns true if success, false if EOF is encountered before peeking the character
Peek at next char in stream.
/returns true if success, false if EOF
Implemented in PoDoFo::NullStreamDevice, and PoDoFo::PdfCanvasInputDevice.