#include <FileOutputStream.h>
Public Member Functions | |
| TFileOutputStream (const IString &rFilename, bool bAppend) | |
| TFileOutputStream (TFile &rFile, bool bAppend=true) | |
| virtual Retval MQUALIFIER | write (const char *pBuffer, Int iBufferSize) |
| virtual Retval MQUALIFIER | writeInt8 (Int8 cData) |
| virtual void MQUALIFIER | close () |
| virtual void MQUALIFIER | flush () |
Protected Member Functions | |
| virtual | ~TFileOutputStream () |
Implements an output stream to write into a file
| zeus::TFileOutputStream::TFileOutputStream | ( | const IString & | strFilename, |
| bool | bAppend | ||
| ) |
UNICODE PROBLEMs of this class:
Creates an output file stream
| strFilename | : Name of the file to open |
| bAppend | : if set the data will be appended to the existing content of the file |
| zeus::TFileOutputStream::TFileOutputStream | ( | TFile & | rFile, |
| bool | bAppend = true |
||
| ) |
Creates an output file stream
| rFile | : File object |
| bAppend | : if set the data will be appended to the existing content of the file |
| zeus::TFileOutputStream::~TFileOutputStream | ( | ) | [protected, virtual] |
Destroys the output file stream
| void MQUALIFIER zeus::TFileOutputStream::close | ( | ) | [virtual] |
Implements zeus::TAbstractOutputStream.
| void MQUALIFIER zeus::TFileOutputStream::flush | ( | ) | [virtual] |
Implements zeus::TAbstractOutputStream.
| Retval MQUALIFIER zeus::TFileOutputStream::write | ( | const char * | pBuffer, |
| Int | iBufferSize | ||
| ) | [virtual] |
Implements zeus::TAbstractOutputStream.
| Retval MQUALIFIER zeus::TFileOutputStream::writeInt8 | ( | Int8 | cData ) | [virtual] |
Implements zeus::IOutputStream.