diff options
author | David Corrales | 2007-06-16 17:31:36 +0000 |
---|---|---|
committer | David Corrales | 2007-06-16 17:31:36 +0000 |
commit | f7ea7e666da6e484577d0341fb0331dff75c69f7 (patch) | |
tree | b7e0b6ce4287cba50ee72e2ab50ca31d942466b2 /common/fs.h | |
parent | b405220ff2990b01b93c03a664ae9247b2fc422c (diff) | |
download | scummvm-rg350-f7ea7e666da6e484577d0341fb0331dff75c69f7.tar.gz scummvm-rg350-f7ea7e666da6e484577d0341fb0331dff75c69f7.tar.bz2 scummvm-rg350-f7ea7e666da6e484577d0341fb0331dff75c69f7.zip |
Removed the isValid operation from the FilesystemNode class in favor of the much richer combinations possible with the new operations (exists, isReadable and isWritable).
The work on the Common::File class is far from complete. Only the necessary was updated.
svn-id: r27473
Diffstat (limited to 'common/fs.h')
-rw-r--r-- | common/fs.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/common/fs.h b/common/fs.h index 6b0a587e1b..328bebb15b 100644 --- a/common/fs.h +++ b/common/fs.h @@ -194,11 +194,6 @@ public: virtual bool isReadable() const; /** - * Indicates whether this path is valid or not for usage. - */ - bool isValid() const; - - /** * Indicates whether this path can be written to or not. */ virtual bool isWritable() const; |