summaryrefslogtreecommitdiffstats
path: root/src/ninja.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ninja.h')
-rw-r--r--src/ninja.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/ninja.h b/src/ninja.h
index 1e797b6..4953711 100644
--- a/src/ninja.h
+++ b/src/ninja.h
@@ -23,7 +23,6 @@
#include <string>
#include <vector>
-#include "disk_interface.h"
#include "eval_env.h"
#include "stat_cache.h"
@@ -34,15 +33,6 @@ struct FileStat;
struct Node;
struct Rule;
-/// Implementation of DiskInterface that actually hits the disk.
-struct RealDiskInterface : public DiskInterface {
- virtual ~RealDiskInterface() {}
- virtual int Stat(const string& path);
- virtual bool MakeDir(const string& path);
- virtual string ReadFile(const string& path, string* err);
- virtual int RemoveFile(const string& path);
-};
-
/// Global state (file status, loaded rules) for a single run.
struct State {
State();