aboutsummaryrefslogtreecommitdiff
path: root/backends/fs/ds
diff options
context:
space:
mode:
authorDavid Corrales2007-05-12 18:17:40 +0000
committerDavid Corrales2007-05-12 18:17:40 +0000
commit86324f00bc561c03b281170125ef2fde14cae132 (patch)
treeae825cd2ad0501f869581e8ac0d71bc7d32433d6 /backends/fs/ds
parentc459f054b46b8791ce206c2ee13d455a9c10fe4d (diff)
downloadscummvm-rg350-86324f00bc561c03b281170125ef2fde14cae132.tar.gz
scummvm-rg350-86324f00bc561c03b281170125ef2fde14cae132.tar.bz2
scummvm-rg350-86324f00bc561c03b281170125ef2fde14cae132.zip
Renamed files and minor tweaks. Thanks LordHoto :)
svn-id: r26810
Diffstat (limited to 'backends/fs/ds')
-rw-r--r--backends/fs/ds/ds-fs-factory.cpp (renamed from backends/fs/ds/DSFilesystemFactory.cpp)2
-rw-r--r--backends/fs/ds/ds-fs-factory.h (renamed from backends/fs/ds/DSFilesystemFactory.h)13
2 files changed, 5 insertions, 10 deletions
diff --git a/backends/fs/ds/DSFilesystemFactory.cpp b/backends/fs/ds/ds-fs-factory.cpp
index 809dc0e5cf..1855fbc40d 100644
--- a/backends/fs/ds/DSFilesystemFactory.cpp
+++ b/backends/fs/ds/ds-fs-factory.cpp
@@ -1,4 +1,4 @@
-#include "backends/fs/ds/DSFilesystemFactory.h"
+#include "backends/fs/ds/ds-fs-factory.h"
#include "backends/fs/ds/ds-fs.cpp"
#include "dsmain.h" //for the isGBAMPAvailable() function
diff --git a/backends/fs/ds/DSFilesystemFactory.h b/backends/fs/ds/ds-fs-factory.h
index 6eaef1cd1e..5e96edc390 100644
--- a/backends/fs/ds/DSFilesystemFactory.h
+++ b/backends/fs/ds/ds-fs-factory.h
@@ -1,7 +1,7 @@
-#ifndef DSFILESYSTEMFACTORY_H_
-#define DSFILESYSTEMFACTORY_H_
+#ifndef DS_FILESYSTEM_FACTORY_H
+#define DS_FILESYSTEM_FACTORY_H
-#include "backends/fs/AbstractFilesystemFactory.h"
+#include "backends/fs/abstract-fs-factory.h"
/**
* Creates DSFilesystemNode objects.
@@ -18,11 +18,6 @@ public:
* @return A unique instance of DSFilesytemFactory.
*/
static DSFilesystemFactory *instance();
-
- /**
- * Destructor.
- */
- virtual ~DSFilesystemFactory() {};
virtual AbstractFilesystemNode *makeRootFileNode() const;
virtual AbstractFilesystemNode *makeCurrentDirectoryFileNode() const;
@@ -35,4 +30,4 @@ private:
static DSFilesystemFactory *_instance;
};
-#endif /*DSFILESYSTEMFACTORY_H_*/
+#endif /*DS_FILESYSTEM_FACTORY_H*/