Index: include/AdblockPlus/FileSystem.h |
=================================================================== |
--- a/include/AdblockPlus/FileSystem.h |
+++ b/include/AdblockPlus/FileSystem.h |
@@ -26,16 +26,24 @@ |
namespace AdblockPlus |
{ |
class FileSystem |
{ |
public: |
struct StatResult |
{ |
+ inline StatResult() |
Felix Dahlke
2013/05/17 09:18:50
The inline keyword is only necessary for free func
|
+ { |
+ exists = false; |
+ isDirectory = false; |
+ isFile = false; |
+ lastModified = false; |
Felix Dahlke
2013/05/17 09:18:50
I think it'd be cleaner to set this to 0, being an
|
+ } |
+ |
bool exists; |
bool isDirectory; |
bool isFile; |
int64_t lastModified; |
}; |
virtual ~FileSystem() {} |
virtual std::tr1::shared_ptr<std::istream> |