diff options
Diffstat (limited to 'backends/fs/posix/posix-fs-factory.cpp')
-rw-r--r-- | backends/fs/posix/posix-fs-factory.cpp | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/backends/fs/posix/posix-fs-factory.cpp b/backends/fs/posix/posix-fs-factory.cpp deleted file mode 100644 index bed3dc5f8f..0000000000 --- a/backends/fs/posix/posix-fs-factory.cpp +++ /dev/null @@ -1,18 +0,0 @@ -#include "backends/fs/posix/posix-fs-factory.h" -#include "backends/fs/posix/posix-fs.cpp" - -DECLARE_SINGLETON(POSIXFilesystemFactory); - -AbstractFilesystemNode *POSIXFilesystemFactory::makeRootFileNode() const { - return new POSIXFilesystemNode(); -} - -AbstractFilesystemNode *POSIXFilesystemFactory::makeCurrentDirectoryFileNode() const { - char buf[MAXPATHLEN]; - getcwd(buf, MAXPATHLEN); - return new POSIXFilesystemNode(buf, true); -} - -AbstractFilesystemNode *POSIXFilesystemFactory::makeFileNodePath(const String &path) const { - return new POSIXFilesystemNode(path, true); -} |