1#ifndef Cpl_Io_LineWriterApi_h_
2#define Cpl_Io_LineWriterApi_h_
37 virtual bool print(
const char* srcstring ) = 0;
43 virtual bool println(
const char* srcstring ) = 0;
49 virtual bool print(
const char* srcstring,
int numbytes ) = 0;
56 virtual bool println(
const char* srcstring,
int numbytes ) = 0;
This class is used by the Container classes to implement a various types of singly linked containers.
Definition Item.h:33
This abstract class defines a interface for a stream line writer.
Definition LineWriterApi.h:31
virtual bool println()=0
Outputs the newline character(s) to the stream.
virtual bool print(const char *srcstring)=0
Outputs the specified string to the stream.
virtual void flush()=0
Forces all buffered data (if any) to be written to the stream media.
virtual bool vprintln(Cpl::Text::String &formatBuffer, const char *format, va_list ap)=0
Same as println( String& formatBuffer, const char* format,...), except that it is called with a va_li...
virtual bool println(const char *srcstring, int numbytes)=0
Outputs the first 'numbytes' bytes of the specified string to the stream and then appends the newline...
virtual bool println(const char *srcstring)=0
Outputs the specified string to the stream and then appends the newline character(s) to the stream.
virtual bool print(Cpl::Text::String &formatBuffer, const char *format,...)=0
Formatted output to the stream.
virtual ~LineWriterApi()
Lets the make the destructor virtual.
Definition LineWriterApi.h:98
virtual void close()=0
Closes the writer and the underlying output stream.
virtual bool print(const char *srcstring, int numbytes)=0
Outputs the first 'numbytes' bytes of the specified string to the stream.
virtual bool println(Cpl::Text::String &formatBuffer, const char *format,...)=0
Same as above, except newline character(s) are appended to the end of the formatted output.
virtual bool vprint(Cpl::Text::String &formatBuffer, const char *format, va_list ap)=0
Same as print( 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