aboutsummaryrefslogtreecommitdiff
path: root/backends/fs/abstract-fs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'backends/fs/abstract-fs.cpp')
-rw-r--r--backends/fs/abstract-fs.cpp20
1 files changed, 1 insertions, 19 deletions
diff --git a/backends/fs/abstract-fs.cpp b/backends/fs/abstract-fs.cpp
index 80ff2b05c5..6daad7152a 100644
--- a/backends/fs/abstract-fs.cpp
+++ b/backends/fs/abstract-fs.cpp
@@ -23,9 +23,9 @@
*/
#include "backends/fs/abstract-fs.h"
-#include "backends/fs/stdiostream.h"
const char *AbstractFilesystemNode::lastPathComponent(const Common::String &str, const char sep) {
+ // TODO: Get rid of this eventually! Use Common::lastPathComponent instead
if(str.empty())
return "";
@@ -38,21 +38,3 @@ const char *AbstractFilesystemNode::lastPathComponent(const Common::String &str,
return cur + 1;
}
-
-Common::SeekableReadStream *AbstractFilesystemNode::openForReading() {
- // FIXME: Until openForReading is supported by all AbstractFilesystemNode
- // implementations, we provide this "generic" one, using Common::File.
- FILE *handle = fopen(getPath().c_str(), "rb");
- if (handle)
- return new StdioStream(handle);
- return 0;
-}
-
-Common::WriteStream *AbstractFilesystemNode::openForWriting() {
- // FIXME: Until openForWriting is supported by all AbstractFilesystemNode
- // implementations, we provide this "generic" one.
- FILE *handle = fopen(getPath().c_str(), "wb");
- if (handle)
- return new StdioStream(handle);
- return 0;
-}