aboutsummaryrefslogtreecommitdiff
path: root/src/sfile.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2006-10-31 05:44:33 +0000
committerMike Buland <eichlan@xagasoft.com>2006-10-31 05:44:33 +0000
commitbdd4bdd8615b1587974312a92219cbeab0068a7a (patch)
treec4fd27267755179327673e4fc501740d01ed9b43 /src/sfile.h
parenta67fdaa1ef1e3a5eea88d19e327c05330998e8aa (diff)
downloadlibbu++-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
diff --git a/src/file.h b/src/sfile.h
index 111a8b8..f94aef7 100644
--- a/src/file.h
+++ b/src/sfile.h
@@ -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
8class File : public Stream 8class SFile : public Stream
9{ 9{
10public: 10public:
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 );