Moved static methods getRoot / getNodeForPath from class FilesystemNode to class AbstractFilesystemNode
svn-id: r22298
This commit is contained in:
parent
d404b6150a
commit
8c452daac2
10 changed files with 38 additions and 38 deletions
|
@ -120,11 +120,11 @@ void WindowsFilesystemNode::addFile(FSList &list, ListMode mode, const char *bas
|
|||
list.push_back(wrap(new WindowsFilesystemNode(entry)));
|
||||
}
|
||||
|
||||
AbstractFilesystemNode *FilesystemNode::getRoot() {
|
||||
AbstractFilesystemNode *AbstractFilesystemNode::getRoot() {
|
||||
return new WindowsFilesystemNode();
|
||||
}
|
||||
|
||||
AbstractFilesystemNode *FilesystemNode::getNodeForPath(const String &path) {
|
||||
AbstractFilesystemNode *AbstractFilesystemNode::getNodeForPath(const String &path) {
|
||||
return new WindowsFilesystemNode(path);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue