diff options
author | Max Horn | 2006-05-12 21:11:37 +0000 |
---|---|---|
committer | Max Horn | 2006-05-12 21:11:37 +0000 |
commit | ed339aa771fa7f47a737c0599197dbe205804338 (patch) | |
tree | 745b34c22ce40254044272d9f8b06b56acdcdd0b /backends | |
parent | 0dfb76002f483f914042982662df24fe14122ea5 (diff) | |
download | scummvm-rg350-ed339aa771fa7f47a737c0599197dbe205804338.tar.gz scummvm-rg350-ed339aa771fa7f47a737c0599197dbe205804338.tar.bz2 scummvm-rg350-ed339aa771fa7f47a737c0599197dbe205804338.zip |
Updated some comments
svn-id: r22422
Diffstat (limited to 'backends')
-rw-r--r-- | backends/fs/abstract-fs.h | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/backends/fs/abstract-fs.h b/backends/fs/abstract-fs.h index da9cef9aab..8f6405763b 100644 --- a/backends/fs/abstract-fs.h +++ b/backends/fs/abstract-fs.h @@ -53,11 +53,15 @@ protected: /** * The child node with the given name. If no child with this name - * exists, returns 0. Will never be called on a node which is not - * a directory node. + * exists, returns 0. When called on a non-directory node, it should + * handle this gracefully by returning 0. + * + * @note Handling calls on non-dir nodes gracefully makes it possible to + * switch to a lazy type detection scheme in the future. */ virtual AbstractFilesystemNode *child(const String &name) const = 0; + /** * Returns a special node representing the FS root. The starting point for * any file system browsing. @@ -70,7 +74,9 @@ protected: * Construct a node based on a path; the path is in the same format as it * would be for calls to fopen(). * - * I.e. getNodeForPath(oldNode.path()) should create a new node identical to oldNode. + * Furthermore getNodeForPath(oldNode.path()) should create a new node + * identical to oldNode. Hence, we can use the "path" value for persistent + * storage e.g. in the config file. * * @TODO: This is of course a place where non-portable code easily will sneak * in, because the format of the path used here is not well-defined. |