diff options
author | Mike Buland <eichlan@xagasoft.com> | 2007-04-10 20:16:19 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2007-04-10 20:16:19 +0000 |
commit | 070374dde0f53bff26078550997f7682e84412e5 (patch) | |
tree | d9088b02e9b5f08f25d7f07f3a26035eea00e8e9 /src/file.h | |
parent | e7ab7cb1604c04763bbdcece5885e6ce5aa100b4 (diff) | |
download | libbu++-070374dde0f53bff26078550997f7682e84412e5.tar.gz libbu++-070374dde0f53bff26078550997f7682e84412e5.tar.bz2 libbu++-070374dde0f53bff26078550997f7682e84412e5.tar.xz libbu++-070374dde0f53bff26078550997f7682e84412e5.zip |
I did it, the streams don't start with an S now.
Diffstat (limited to '')
-rw-r--r-- | src/file.h (renamed from src/sfile.h) | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,5 +1,5 @@ | |||
1 | #ifndef SFILE_H | 1 | #ifndef FILE_H |
2 | #define SFILE_H | 2 | #define FILE_H |
3 | 3 | ||
4 | #include <stdint.h> | 4 | #include <stdint.h> |
5 | 5 | ||
@@ -7,11 +7,11 @@ | |||
7 | 7 | ||
8 | namespace Bu | 8 | namespace Bu |
9 | { | 9 | { |
10 | class SFile : public Bu::Stream | 10 | class File : public Bu::Stream |
11 | { | 11 | { |
12 | public: | 12 | public: |
13 | SFile( const char *sName, const char *sFlags ); | 13 | File( const char *sName, const char *sFlags ); |
14 | virtual ~SFile(); | 14 | virtual ~File(); |
15 | 15 | ||
16 | virtual void close(); | 16 | virtual void close(); |
17 | virtual size_t read( void *pBuf, size_t nBytes ); | 17 | virtual size_t read( void *pBuf, size_t nBytes ); |