OSFileOutputStream Class ReferenceGeneric file output stream.
More...
#include <rtxCppFileOutputStream.h>
Inheritance diagram for OSFileOutputStream:
List of all members.
|
Public Member Functions |
| | OSFileOutputStream (const char *pFilename) |
| | Creates and initializes a file output stream using the name of file.
|
| | OSFileOutputStream (OSContext *pContext, const char *pFilename) |
| | Creates and initializes a file output stream using the name of file.
|
| | OSFileOutputStream (FILE *file) |
| | Initializes the file output stream using the opened FILE structure descriptor.
|
| | OSFileOutputStream (OSContext *pContext, FILE *file) |
| | Initializes the file output stream using the opened FILE structure descriptor.
|
Detailed Description
Generic file output stream.
This class opens an existing file for output in binary mode and reads data from it.
Definition at line 37 of file rtxCppFileOutputStream.h.
Constructor & Destructor Documentation
| OSFileOutputStream::OSFileOutputStream |
( |
const char * |
pFilename |
) |
|
|
|
|
Creates and initializes a file output stream using the name of file.
- Parameters:
-
- Exceptions:
-
- See also:
- rtxStreamFileOpen
|
| OSFileOutputStream::OSFileOutputStream |
( |
OSContext * |
pContext, |
|
|
const char * |
pFilename |
|
) |
|
|
|
|
Creates and initializes a file output stream using the name of file.
- Parameters:
-
| pContext | Pointer to a context to use. |
| pFilename | Name of file. |
- Exceptions:
-
- See also:
- rtxStreamFileOpen
|
| OSFileOutputStream::OSFileOutputStream |
( |
FILE * |
file |
) |
|
|
|
|
Initializes the file output stream using the opened FILE structure descriptor.
- Parameters:
-
| file | Pointer to FILE structure. |
- Exceptions:
-
- See also:
- rtxStreamFileAttach
|
| OSFileOutputStream::OSFileOutputStream |
( |
OSContext * |
pContext, |
|
|
FILE * |
file |
|
) |
|
|
|
|
Initializes the file output stream using the opened FILE structure descriptor.
- Parameters:
-
| pContext | Pointer to a context to use. |
| file | Pointer to FILE structure. |
- Exceptions:
-
- See also:
- rtxStreamFileAttach
|
The documentation for this class was generated from the following file:
|