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