16 lines
542 B
C++
16 lines
542 B
C++
#include "backends/fs/symbian/symbian-fs-factory.h"
|
|
#include "backends/fs/symbian/symbian-fs.cpp"
|
|
|
|
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);
|
|
}
|