aboutsummaryrefslogtreecommitdiff
path: root/backends/file/base-file.h
diff options
context:
space:
mode:
Diffstat (limited to 'backends/file/base-file.h')
-rw-r--r--backends/file/base-file.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/backends/file/base-file.h b/backends/file/base-file.h
index f383a1a453..d28655b31e 100644
--- a/backends/file/base-file.h
+++ b/backends/file/base-file.h
@@ -30,12 +30,14 @@
#include "common/str.h"
#include "common/stream.h"
-using namespace Common;
+//using namespace Common;
+
+namespace Common {
/**
* Implements several file related functions used by the Common::File wrapper.
*/
-class BaseFile : public Common::SeekableReadStream {
+class BaseFile : public SeekableReadStream {
protected:
/** File handle to the actual file; 0 if no file is open. */
void *_handle;
@@ -177,4 +179,6 @@ public:
//uint32 write(const void *dataPtr, uint32 dataSize);
};
+} // End of namespace Common
+
#endif //BACKENDS_BASE_FILE_H