Index: include/AdblockPlus/DefaultFileSystem.h |
=================================================================== |
--- a/include/AdblockPlus/DefaultFileSystem.h |
+++ b/include/AdblockPlus/DefaultFileSystem.h |
@@ -26,19 +26,19 @@ |
#define PATH_SEPARATOR '/' |
#endif |
namespace AdblockPlus |
{ |
class DefaultFileSystem : public FileSystem |
{ |
public: |
- std::tr1::shared_ptr<std::istream> Read(const std::string& path) const; |
+ std::shared_ptr<std::istream> Read(const std::string& path) const; |
void Write(const std::string& path, |
- std::tr1::shared_ptr<std::istream> data); |
+ std::shared_ptr<std::istream> data); |
void Move(const std::string& fromPath, |
const std::string& toPath); |
void Remove(const std::string& path); |
StatResult Stat(const std::string& path) const; |
std::string Resolve(const std::string& path) const; |
void SetBasePath(const std::string& path); |
protected: |
std::string basePath; |