diff options
author | David Corrales | 2007-06-04 22:02:35 +0000 |
---|---|---|
committer | David Corrales | 2007-06-04 22:02:35 +0000 |
commit | fedfe66831ebed2822fe74c86ed59b6d69326f3d (patch) | |
tree | a707ffd1cf4094aef279ffa77a0f6a4f4f98d8bf /backends/fs/symbian | |
parent | 3e7c5b027e2131cde30d994ccdb27c77f0118ffe (diff) | |
download | scummvm-rg350-fedfe66831ebed2822fe74c86ed59b6d69326f3d.tar.gz scummvm-rg350-fedfe66831ebed2822fe74c86ed59b6d69326f3d.tar.bz2 scummvm-rg350-fedfe66831ebed2822fe74c86ed59b6d69326f3d.zip |
Added stubs for the exists(), isReadable() and isWritable() methods for all architectures.
svn-id: r27087
Diffstat (limited to 'backends/fs/symbian')
-rw-r--r-- | backends/fs/symbian/symbian-fs.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/backends/fs/symbian/symbian-fs.cpp b/backends/fs/symbian/symbian-fs.cpp index a235933947..5c3dd74f5c 100644 --- a/backends/fs/symbian/symbian-fs.cpp +++ b/backends/fs/symbian/symbian-fs.cpp @@ -59,11 +59,14 @@ public: */ SymbianFilesystemNode(const String &path); + virtual bool exists() const { return true; } //FIXME: this is just a stub virtual String getDisplayName() const { return _displayName; } virtual String getName() const { return _displayName; } virtual String getPath() const { return _path; } virtual bool isDirectory() const { return _isDirectory; } + virtual bool isReadable() const { return true; } //FIXME: this is just a stub virtual bool isValid() const { return _isValid; } + virtual bool isWritable() const { return true; } //FIXME: this is just a stub virtual AbstractFilesystemNode *getChild(const String &n) const; virtual bool getChildren(AbstractFSList &list, ListMode mode) const; |