Index: include/AdblockPlus/FileSystem.h |
=================================================================== |
--- a/include/AdblockPlus/FileSystem.h |
+++ b/include/AdblockPlus/FileSystem.h |
@@ -30,6 +30,9 @@ |
virtual void Remove(const std::string& path) = 0; |
virtual StatResult Stat(const std::string& path) const = 0; |
virtual std::string Resolve(const std::string& path) const = 0; |
+ virtual void SetBasePath(const std::string& path) = 0; |
Wladimir Palant
2013/04/30 09:29:50
This shouldn't be a method of the FileSystem inter
|
+ protected: |
+ std::string basePath; |
Felix Dahlke
2013/04/30 09:14:52
I think we should either not declare basePath here
|
}; |
typedef std::tr1::shared_ptr<FileSystem> FileSystemPtr; |