1#ifndef Cpl_Io_Output_h_
2#define Cpl_Io_Output_h_
46 virtual bool write(
const char*
string );
76 virtual bool write(
const void* buffer,
int numBytes );
83 virtual bool write(
const void* buffer,
int maxBytes,
int& bytesWritten ) = 0;
This abstract class defines a close operation that is intended to be used Input and Output streams/fi...
Definition Close.h:32
This abstract class defines a isEos() operation that is intended to be used Input and Output streams.
Definition IsEos.h:31
This partially abstract class defines a interface for operating on an output stream (example of a str...
Definition Output.h:34
virtual bool write(const void *buffer, int maxBytes, int &bytesWritten)=0
Writes the content of the buffer to the stream.
virtual ~Output()
Lets the make the destructor virtual.
Definition Output.h:93
virtual bool write(char c)
Writes a single byte to the stream.
virtual bool write(const Cpl::Text::String &string)
Writes a string to the stream.
virtual void flush()=0
Forces all buffered data (if any) to be written to the stream media.
virtual bool write(Cpl::Text::String &formatBuffer, const char *format,...)
Formatted write to the stream.
virtual bool write(const void *buffer, int numBytes)
Writes the content of the buffer to the stream.
virtual bool write(const char *string)
Writes a string to the stream.
virtual bool vwrite(Cpl::Text::String &formatBuffer, const char *format, va_list ap)
Same as write( String& formatBuffer, const char* format,...), except that it is called with a va_list...
This abstract class defines the operations that can be before on a NULL terminated string.
Definition String.h:40
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20