diff options
Diffstat (limited to 'src/sfile.cpp')
| -rw-r--r-- | src/sfile.cpp | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/src/sfile.cpp b/src/sfile.cpp new file mode 100644 index 0000000..9c5f830 --- /dev/null +++ b/src/sfile.cpp | |||
| @@ -0,0 +1,37 @@ | |||
| 1 | #include "sfile.h" | ||
| 2 | #include "exceptions.h" | ||
| 3 | |||
| 4 | SFile::SFile( const char *sName, const char *sFlags ) | ||
| 5 | { | ||
| 6 | fh = fopen( sName, sFlags ); | ||
| 7 | } | ||
| 8 | |||
| 9 | SFile::~SFile() | ||
| 10 | { | ||
| 11 | } | ||
| 12 | |||
| 13 | void SFile::close() | ||
| 14 | { | ||
| 15 | if( fh ) | ||
| 16 | { | ||
| 17 | fclose( fh ); | ||
| 18 | fh = NULL; | ||
| 19 | } | ||
| 20 | } | ||
| 21 | |||
| 22 | size_t SFile::read( char *pBuf, size_t nBytes ) | ||
| 23 | { | ||
| 24 | if( !fh ) | ||
| 25 | throw FileException("SFile not open."); | ||
| 26 | |||
| 27 | return fread( pBuf, 1, nBytes, fh ); | ||
| 28 | } | ||
| 29 | |||
| 30 | size_t SFile::write( char *pBuf, size_t nBytes ) | ||
| 31 | { | ||
| 32 | if( !fh ) | ||
| 33 | throw FileException("SFile not open."); | ||
| 34 | |||
| 35 | return fwrite( pBuf, 1, nBytes, fh ); | ||
| 36 | } | ||
| 37 | |||
