aboutsummaryrefslogtreecommitdiff
path: root/backends/fs/morphos/abox-fs-factory.h
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/morphos/abox-fs-factory.h
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/morphos/abox-fs-factory.h')
-rw-r--r--backends/fs/morphos/abox-fs-factory.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/backends/fs/morphos/abox-fs-factory.h b/backends/fs/morphos/abox-fs-factory.h
new file mode 100644
index 0000000000..f6cf7774c5
--- /dev/null
+++ b/backends/fs/morphos/abox-fs-factory.h
@@ -0,0 +1,33 @@
+#ifndef ABOX_FILESYSTEM_FACTORY_H
+#define ABOX_FILESYSTEM_FACTORY_H
+
+#include "backends/fs/abstract-fs-factory.h"
+
+/**
+ * Creates ABoxFilesystemNode objects.
+ *
+ * Parts of this class are documented in the base interface class, AbstractFilesystemFactory.
+ */
+class ABoxFilesystemFactory : public AbstractFilesystemFactory {
+public:
+ typedef Common::String String;
+
+ /**
+ * Creates an instance of ABoxFilesystemFactory using the Singleton pattern.
+ *
+ * @return A unique instance of ABoxFilesytemFactory.
+ */
+ static ABoxFilesystemFactory *instance();
+
+ virtual AbstractFilesystemNode *makeRootFileNode() const;
+ virtual AbstractFilesystemNode *makeCurrentDirectoryFileNode() const;
+ virtual AbstractFilesystemNode *makeFileNodePath(const String &path) const;
+
+protected:
+ ABoxFilesystemFactory() {};
+
+private:
+ static ABoxFilesystemFactory *_instance;
+};
+
+#endif /*ABOX_FILESYSTEM_FACTORY_H*/