#include <OutStreams.h>
Inheritance diagram for OutFile:
Public Member Functions | |
OutFile () | |
Default constructor. | |
~OutFile () | |
Destructor. | |
virtual bool | exists () const |
The function states whether the file actually exists. | |
Protected Member Functions | |
void | open (const char *name) |
Opens the stream. | |
void | open (const char *name, bool append) |
Opens the stream. | |
virtual void | writeToStream (const void *p, int size) |
The function writes a number of bytes into the file. | |
Private Attributes | |
File * | stream |
Object representing the file. |
Definition at line 587 of file OutStreams.h.
|
Default constructor.
Definition at line 594 of file OutStreams.h. |
|
Destructor.
Definition at line 597 of file OutStreams.h. |
|
The function states whether the file actually exists.
Definition at line 603 of file OutStreams.h. References File::exists(). Referenced by LogPlayer::save(), IniFile::save(), LogPlayer::saveAMV(), LogPlayer::saveCSV(), and LogPlayer::saveImages(). |
Here is the call graph for this function:
|
Opens the stream.
Definition at line 613 of file OutStreams.h. Referenced by OutBinaryFile::OutBinaryFile(), OutTextFile::OutTextFile(), and OutTextRawFile::OutTextRawFile(). |
|
Opens the stream.
Definition at line 625 of file OutStreams.h. |
|
The function writes a number of bytes into the file.
Implements PhysicalOutStream. Definition at line 633 of file OutStreams.h. References File::write(). |
Here is the call graph for this function:
|
Object representing the file.
Definition at line 590 of file OutStreams.h. |