2007-05-12 18:17:40 +00:00
|
|
|
#include "backends/fs/psp/psp-fs-factory.h"
|
2007-05-03 02:39:33 +00:00
|
|
|
#include "backends/fs/psp/psp_fs.cpp"
|
|
|
|
|
|
|
|
AbstractFilesystemNode *PSPFilesystemFactory::makeRootFileNode() const {
|
|
|
|
return new PSPFilesystemNode();
|
|
|
|
}
|
|
|
|
|
|
|
|
AbstractFilesystemNode *PSPFilesystemFactory::makeCurrentDirectoryFileNode() const {
|
|
|
|
return new PSPFilesystemNode();
|
|
|
|
}
|
|
|
|
|
|
|
|
AbstractFilesystemNode *PSPFilesystemFactory::makeFileNodePath(const String &path) const {
|
|
|
|
return new PSPFilesystemNode(path, true);
|
|
|
|
}
|