Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: include/AdblockPlus/FileSystem.h

Issue 10187046: Rationalize preprocessor guard variable names (Closed)
Patch Set: Created April 29, 2013, 9:33 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
1 #ifndef ADBLOCKPLUS_FILE_SYSTEM_H 1 #ifndef ADBLOCK_PLUS_FILE_SYSTEM_H
2 #define ADBLOCKPLUS_FILE_SYSTEM_H 2 #define ADBLOCK_PLUS_FILE_SYSTEM_H
3 3
4 #include <istream> 4 #include <istream>
5 #include <stdint.h> 5 #include <stdint.h>
6 #include <string> 6 #include <string>
7 7
8 #include "tr1_memory.h" 8 #include "tr1_memory.h"
9 9
10 namespace AdblockPlus 10 namespace AdblockPlus
11 { 11 {
12 class FileSystem 12 class FileSystem
(...skipping 15 matching lines...) Expand all
28 virtual void Move(const std::string& fromPath, 28 virtual void Move(const std::string& fromPath,
29 const std::string& toPath) = 0; 29 const std::string& toPath) = 0;
30 virtual void Remove(const std::string& path) = 0; 30 virtual void Remove(const std::string& path) = 0;
31 virtual StatResult Stat(const std::string& path) const = 0; 31 virtual StatResult Stat(const std::string& path) const = 0;
32 }; 32 };
33 33
34 typedef std::tr1::shared_ptr<FileSystem> FileSystemPtr; 34 typedef std::tr1::shared_ptr<FileSystem> FileSystemPtr;
35 } 35 }
36 36
37 #endif 37 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld