14 lines
500 B
C++
14 lines
500 B
C++
#include "backends/fs/windows/windows-fs-factory.h"
|
|
#include "backends/fs/windows/windows-fs.cpp"
|
|
|
|
AbstractFilesystemNode *WindowsFilesystemFactory::makeRootFileNode() const {
|
|
return new WindowsFilesystemNode();
|
|
}
|
|
|
|
AbstractFilesystemNode *WindowsFilesystemFactory::makeCurrentDirectoryFileNode() const {
|
|
return new WindowsFilesystemNode(NULL, true);
|
|
}
|
|
|
|
AbstractFilesystemNode *WindowsFilesystemFactory::makeFileNodePath(const String &path) const {
|
|
return new WindowsFilesystemNode(path, false);
|
|
}
|