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