aboutsummaryrefslogtreecommitdiff
path: root/backends/fs/fs.h
diff options
context:
space:
mode:
authorMax Horn2002-11-18 18:50:11 +0000
committerMax Horn2002-11-18 18:50:11 +0000
commitd9aebd1cba00652be2cf698bb533ce11a52fa9f6 (patch)
treeea320ab464de190c5cf99b028e796b094805411f /backends/fs/fs.h
parent4fefb1a67954a833d4fb79aca9a72da3914fd763 (diff)
downloadscummvm-rg350-d9aebd1cba00652be2cf698bb533ce11a52fa9f6.tar.gz
scummvm-rg350-d9aebd1cba00652be2cf698bb533ce11a52fa9f6.tar.bz2
scummvm-rg350-d9aebd1cba00652be2cf698bb533ce11a52fa9f6.zip
removed obsolete example
svn-id: r5598
Diffstat (limited to 'backends/fs/fs.h')
-rw-r--r--backends/fs/fs.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/backends/fs/fs.h b/backends/fs/fs.h
index 47d28a2fa4..47e47d3a9e 100644
--- a/backends/fs/fs.h
+++ b/backends/fs/fs.h
@@ -151,21 +151,4 @@ public:
int size() const { return _size; }
};
-
-/*
- * Finally, a piece of sample code that does print out the content of your root directory:
-
-void test_FS_stuff() {
- FilesystemNode *root = FilesystemNode::getRoot();
- FSList *filesInRoot = root->listDir();
-
- printf("Content of your root directory:\n");
- for (int i = 0; i < filesInRoot->size(); i++) {
- const FilesystemNode &node = (*filesInRoot)[i];
- printf("File: '%s', path: '%s'\n", node.displayName().c_str(), node.path().c_str());
- }
-}
-
- *
- */
#endif