aboutsummaryrefslogtreecommitdiff
path: root/common/fs.h
diff options
context:
space:
mode:
authorMax Horn2010-02-13 11:57:01 +0000
committerMax Horn2010-02-13 11:57:01 +0000
commit0a13162073c95417be0d9414af69d3f6eca36f9b (patch)
tree4e3e97cb9ce3c5d5e030641c6e4e361b29348b57 /common/fs.h
parent8ac5d00d576519b2fc0f18aff28d29ad3f6ab852 (diff)
downloadscummvm-rg350-0a13162073c95417be0d9414af69d3f6eca36f9b.tar.gz
scummvm-rg350-0a13162073c95417be0d9414af69d3f6eca36f9b.tar.bz2
scummvm-rg350-0a13162073c95417be0d9414af69d3f6eca36f9b.zip
cleanup
svn-id: r48041
Diffstat (limited to 'common/fs.h')
-rw-r--r--common/fs.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/common/fs.h b/common/fs.h
index d0e3c23558..6b20a05013 100644
--- a/common/fs.h
+++ b/common/fs.h
@@ -101,7 +101,7 @@ public:
*
* @return bool true if the node exists, false otherwise.
*/
- virtual bool exists() const;
+ bool exists() const;
/**
* Create a new node referring to a child node of the current node, which
@@ -128,7 +128,7 @@ public:
*
* @return true if successful, false otherwise (e.g. when the directory does not exist).
*/
- virtual bool getChildren(FSList &fslist, ListMode mode = kListDirectoriesOnly, bool hidden = false) const;
+ bool getChildren(FSList &fslist, ListMode mode = kListDirectoriesOnly, bool hidden = false) const;
/**
* Return a human readable string for this node, usable for display (e.g.
@@ -161,7 +161,7 @@ public:
*
* @return the 'path' represented by this filesystem node
*/
- virtual String getPath() const;
+ String getPath() const;
/**
* Get the parent node of this node. If this node has no parent node,
@@ -178,7 +178,7 @@ public:
* Or even replace isDirectory by a getType() method that can return values like
* kDirNodeType, kFileNodeType, kInvalidNodeType.
*/
- virtual bool isDirectory() const;
+ bool isDirectory() const;
/**
* Indicates whether the object referred by this node can be read from or not.
@@ -191,7 +191,7 @@ public:
*
* @return true if the object can be read, false otherwise.
*/
- virtual bool isReadable() const;
+ bool isReadable() const;
/**
* Indicates whether the object referred by this node can be written to or not.
@@ -204,7 +204,7 @@ public:
*
* @return true if the object can be written to, false otherwise.
*/
- virtual bool isWritable() const;
+ bool isWritable() const;
/**
* Creates a SeekableReadStream instance corresponding to the file
@@ -222,7 +222,7 @@ public:
*
* @return pointer to the stream object, 0 in case of a failure
*/
- virtual WriteStream *createWriteStream() const;
+ WriteStream *createWriteStream() const;
};
/**