|
PoDoFo 0.9.20
|
#include <OutputStream.h>
Public Member Functions | |
| void | Write (char ch) |
| void | Write (const std::string_view &view) |
| void | Write (const char *buffer, size_t size) |
Protected Member Functions | |
| virtual void | checkWrite () const |
An interface for writing blocks of data to a data source.
|
protectedvirtual |
Optional checks before writing By default does nothing
| void OutputStream::Write | ( | char | ch | ) |
Write the character in the device
| ch | the character to wrte |
| void OutputStream::Write | ( | const char * | buffer, |
| size_t | size ) |
Write data to the output stream
| buffer | the data is read from this buffer |
| len | the size of the buffer |
| void PoDoFo::OutputStream::Write | ( | const std::string_view & | view | ) |
Write the view to the OutputStream
| view | the view to be written |