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