diff options
author | Mike Buland <eichlan@xagasoft.com> | 2006-10-31 05:44:33 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2006-10-31 05:44:33 +0000 |
commit | bdd4bdd8615b1587974312a92219cbeab0068a7a (patch) | |
tree | c4fd27267755179327673e4fc501740d01ed9b43 /src/sfile.h | |
parent | a67fdaa1ef1e3a5eea88d19e327c05330998e8aa (diff) | |
download | libbu++-bdd4bdd8615b1587974312a92219cbeab0068a7a.tar.gz libbu++-bdd4bdd8615b1587974312a92219cbeab0068a7a.tar.bz2 libbu++-bdd4bdd8615b1587974312a92219cbeab0068a7a.tar.xz libbu++-bdd4bdd8615b1587974312a92219cbeab0068a7a.zip |
Changed the file class to be SFile so that it will collide less, all of them
will be named like that, make life easier.
Diffstat (limited to '')
-rw-r--r-- | src/sfile.h (renamed from src/file.h) | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,15 +1,15 @@ | |||
1 | #ifndef FILE_H | 1 | #ifndef SFILE_H |
2 | #define FILE_H | 2 | #define SFILE_H |
3 | 3 | ||
4 | #include <stdint.h> | 4 | #include <stdint.h> |
5 | 5 | ||
6 | #include "stream.h" | 6 | #include "stream.h" |
7 | 7 | ||
8 | class File : public Stream | 8 | class SFile : public Stream |
9 | { | 9 | { |
10 | public: | 10 | public: |
11 | File( const char *sName, const char *sFlags ); | 11 | SFile( const char *sName, const char *sFlags ); |
12 | virtual ~File(); | 12 | virtual ~SFile(); |
13 | 13 | ||
14 | virtual void close(); | 14 | virtual void close(); |
15 | virtual size_t read( char *pBuf, size_t nBytes ); | 15 | virtual size_t read( char *pBuf, size_t nBytes ); |