1#ifndef Cpl_Io_File_Output_h_
2#define Cpl_Io_File_Output_h_
45 Output(
const char* fileName,
bool forceCreate=
true,
bool forceEmptyFile=
false );
69 bool write(
const char*
string );
81 bool write(
const void* buffer,
int maxBytes );
84 bool write(
const void* buffer,
int maxBytes,
int& bytesWritten );
This abstract class defines the interface for a Random Access Input File.
Definition OutputApi.h:35
This concrete class provides a platform independent 'standard' implementation of a Cpl::Io::File::Out...
Definition Output.h:37
bool currentPos(unsigned long &curPosition)
See Cpl::Io::File::Object.
~Output()
Destructor -->Will insure the file gets closed.
bool setRelativePos(long deltaOffset)
See Cpl::Io::File::ObjectApi.
Output(const char *fileName, bool forceCreate=true, bool forceEmptyFile=false)
Constructor -->Opens the file.
bool write(const void *buffer, int maxBytes, int &bytesWritten)
See Cpl::Io::Output.
bool isEos()
See Cpl::Io::IsEos (is equivalent to isEof())
bool write(const void *buffer, int maxBytes)
See Cpl::Io::Output.
bool setToEof()
See Cpl::Io::File::ObjectApi.
bool isEof()
See Cpl::Io::File::ObjectApi.
bool vwrite(Cpl::Text::String &formatBuffer, const char *format, va_list ap)
See Cpl::Io::Output.
bool write(const Cpl::Text::String &string)
See Cpl::Io::Output.
void flush()
See Cpl::Io::Output.
void close()
See Cpl::Io::Close.
bool setAbsolutePos(unsigned long newoffset)
See Cpl::Io::File::Object.
bool write(Cpl::Text::String &formatBuffer, const char *format,...)
See Cpl::Io::Output.
bool write(char c)
See Cpl::Io::Output.
Output(Cpl::Io::Descriptor streamfd)
Constructor. 'streamfd' is a the file descriptor of a existing/opened file.
bool length(unsigned long &len)
See Cpl::Io::File::ObjectApi.
Cpl::Io::Stdio::Output_ m_stream
Provides the underlying write functionality.
Definition Output.h:40
bool isOpened()
This method returns true if the file was successfully open and/or is still opened (i....
bool write(const char *string)
See Cpl::Io::Output.
This concrete class implements a Output stream using the underlying platform's native OS 'file interf...
Definition Output_.h:44
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
This union defines a 'IO descriptor' in terms of a an integer and/or a void*.
Definition Descriptor.h:26