mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-12 11:43:00 +00:00
15 lines
500 B
C++
15 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);
|
|
}
|