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