1#ifndef Cpl_Io_Stdio_Output_x_h_
2#define Cpl_Io_Stdio_Output_x_h_
111 bool write(
const void* buffer,
int maxBytes,
int& bytesWritten );
This concrete class provides a platform independent 'standard' implementation of a Cpl::Io::File::Out...
Definition Output.h:37
This partially abstract class defines a interface for operating on an output stream (example of a str...
Definition Output.h:34
virtual bool write(char c)
Writes a single byte to the stream.
This concrete class implements a Output stream using the underlying platform's native OS 'file interf...
Definition Output_.h:44
bool isOpened()
This method returns true if the file was successfully open and/or is still opened (i....
void activate(int fd)
Activates and/or resets the underlying 'fd' for the stream.
~Output_(void)
Destructor.
bool m_outEos
Cache end-of-stream status.
Definition Output_.h:50
bool write(const void *buffer, int maxBytes, int &bytesWritten)
See Cpl::Io::Output.
void activate(Cpl::Io::Descriptor streamfd)
Activates and/or resets the underlying 'streamfd' for the stream.
Output_(void *handle)
Constructor.
bool isEos()
See Cpl::Io::IsEos.
Output_(Cpl::Io::Descriptor streamfd)
Constructor.
Output_(int fd)
Constructor.
void flush()
See Cpl::Io::Output.
Cpl::Io::Descriptor m_outFd
Stream Handle.
Definition Output_.h:47
void close()
See Cpl::Io::Output.
void activate(void *handle)
Activates and/or resets the underlying 'handle' for the stream.
Output_(void)
Constructor.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20
This union defines a 'IO descriptor' in terms of a an integer and/or a void*.
Definition Descriptor.h:26