aboutsummaryrefslogtreecommitdiff
path: root/backends/fs/fs.h
diff options
context:
space:
mode:
authorMax Horn2004-11-21 13:18:07 +0000
committerMax Horn2004-11-21 13:18:07 +0000
commit01cb15b9b272301d5d135c66caa9ee02d1f62b08 (patch)
treeba1e4a66d668f1062f528018f76891b81966ec81 /backends/fs/fs.h
parenteb44281ecb6ae01155c3e93c31b29b14cfcd6e73 (diff)
downloadscummvm-rg350-01cb15b9b272301d5d135c66caa9ee02d1f62b08.tar.gz
scummvm-rg350-01cb15b9b272301d5d135c66caa9ee02d1f62b08.tar.bz2
scummvm-rg350-01cb15b9b272301d5d135c66caa9ee02d1f62b08.zip
Since we do ref counting on the nodes now, we can re-use the root nodes now
svn-id: r15851
Diffstat (limited to 'backends/fs/fs.h')
-rw-r--r--backends/fs/fs.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/backends/fs/fs.h b/backends/fs/fs.h
index bc72cccc79..438e8d6583 100644
--- a/backends/fs/fs.h
+++ b/backends/fs/fs.h
@@ -139,6 +139,17 @@ public:
{
return scumm_stricmp(displayName().c_str(), node.displayName().c_str()) < 0;
}
+
+
+ /* TODO:
+ bool exists();
+
+ bool isDirectory();
+ bool isFile();
+
+ bool isReadable();
+ bool isWriteable();
+ */
};
class FilesystemNode : public AbstractFilesystemNode {