diff options
author | Alexander Tkachev | 2016-05-25 16:49:17 +0600 |
---|---|---|
committer | Alexander Tkachev | 2016-08-24 16:07:55 +0600 |
commit | 17fc40a94436f970af75d6717c7a63c70eafcb12 (patch) | |
tree | 601c414c39ffa3b4ad66a91b58b6cb646a09c817 /backends/fs/symbian | |
parent | ae8e7f39f5b3e4f647a29d39d19cce7626528bb1 (diff) | |
download | scummvm-rg350-17fc40a94436f970af75d6717c7a63c70eafcb12.tar.gz scummvm-rg350-17fc40a94436f970af75d6717c7a63c70eafcb12.tar.bz2 scummvm-rg350-17fc40a94436f970af75d6717c7a63c70eafcb12.zip |
CLOUD: Add AbstractFSNode::create() backends stubs
Diffstat (limited to 'backends/fs/symbian')
-rw-r--r-- | backends/fs/symbian/symbian-fs.cpp | 6 | ||||
-rw-r--r-- | backends/fs/symbian/symbian-fs.h | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/backends/fs/symbian/symbian-fs.cpp b/backends/fs/symbian/symbian-fs.cpp index 8fbc3a402a..e4163caa33 100644 --- a/backends/fs/symbian/symbian-fs.cpp +++ b/backends/fs/symbian/symbian-fs.cpp @@ -231,4 +231,10 @@ Common::SeekableReadStream *SymbianFilesystemNode::createReadStream() { Common::WriteStream *SymbianFilesystemNode::createWriteStream() { return SymbianStdioStream::makeFromPath(getPath(), true); } + +bool SymbianFilesystemNode::create(bool isDirectory) { + error("Not supported"); + return false; +} + #endif //#if defined(__SYMBIAN32__) diff --git a/backends/fs/symbian/symbian-fs.h b/backends/fs/symbian/symbian-fs.h index 339e998a28..1327f9f2e9 100644 --- a/backends/fs/symbian/symbian-fs.h +++ b/backends/fs/symbian/symbian-fs.h @@ -66,6 +66,7 @@ public: virtual Common::SeekableReadStream *createReadStream(); virtual Common::WriteStream *createWriteStream(); + virtual bool create(bool isDirectory); }; #endif |