aboutsummaryrefslogtreecommitdiff
path: root/backends/fs/morphos/abox-fs-factory.h
diff options
context:
space:
mode:
Diffstat (limited to 'backends/fs/morphos/abox-fs-factory.h')
-rw-r--r--backends/fs/morphos/abox-fs-factory.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/backends/fs/morphos/abox-fs-factory.h b/backends/fs/morphos/abox-fs-factory.h
index 19ef2b097f..1adbd1475a 100644
--- a/backends/fs/morphos/abox-fs-factory.h
+++ b/backends/fs/morphos/abox-fs-factory.h
@@ -30,20 +30,20 @@
/**
* Creates ABoxFilesystemNode objects.
- *
+ *
* Parts of this class are documented in the base interface class, AbstractFilesystemFactory.
*/
-class ABoxFilesystemFactory : public AbstractFilesystemFactory, public Common::Singleton<ABoxFilesystemFactory> {
+class ABoxFilesystemFactory : public AbstractFilesystemFactory, public Common::Singleton<ABoxFilesystemFactory> {
public:
typedef Common::String String;
-
+
virtual AbstractFilesystemNode *makeRootFileNode() const;
virtual AbstractFilesystemNode *makeCurrentDirectoryFileNode() const;
virtual AbstractFilesystemNode *makeFileNodePath(const String &path) const;
-
+
protected:
ABoxFilesystemFactory() {};
-
+
private:
friend class Common::Singleton<SingletonBaseType>;
};