1#ifndef Cpl_Io_File_Null_h_
2#define Cpl_Io_File_Null_h_
46 bool read(
void* buffer,
int numBytes,
int& bytesRead );
57 bool write(
const void* buffer,
int maxBytes,
int& bytesWritten );
This concrete class implements a NULL InputOutputApi File that all of its input operations return 'En...
Definition Null.h:32
bool write(const void *buffer, int maxBytes, int &bytesWritten)
See Cpl::Io::Output.
bool m_opened
Track my opened/closed state.
Definition Null.h:91
bool currentPos(unsigned long &curPos)
See Cpl::Io::File::ObjectApi.
bool read(void *buffer, int numBytes, int &bytesRead)
See Cpl::Io::Input.
bool setAbsolutePos(unsigned long newoffset)
See Cpl::Io::File::ObjectApi.
void close()
See Cpl::Io::Close. Note: Once closed() has been called, all of the write() and ObjecApi methods will...
void flush()
See Cpl::Io::Output.
bool isEof()
See Cpl::Io::File::ObjectApi.
bool setRelativePos(long deltaOffset)
See Cpl::Io::File::ObjectApi.
bool isEos()
See Cpl::Io::IsEos (is equivalent to isEof())
bool setToEof()
See Cpl::Io::File::ObjectApi.
bool available()
See Cpl::Io::Input.
bool length(unsigned long &len)
See Cpl::Io::File::ObjectApi.
virtual bool write(char c)
Writes a single byte to the stream.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20