aboutsummaryrefslogtreecommitdiffstats
path: root/file.h
diff options
context:
space:
mode:
Diffstat (limited to 'file.h')
-rw-r--r--file.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/file.h b/file.h
new file mode 100644
index 0000000..a053073
--- /dev/null
+++ b/file.h
@@ -0,0 +1,37 @@
+#ifndef FILE_H_
+#define FILE_H_
+
+#include <stdint.h>
+
+#include <string>
+#include <vector>
+
+#include "string_pool.h"
+
+using namespace std;
+
+class AST;
+
+class Makefile {
+ public:
+ explicit Makefile(const string& filename);
+ ~Makefile();
+
+ const char* buf() const { return buf_; }
+ size_t len() const { return len_; }
+ const string& filename() const { return filename_; }
+
+ StringPool* mutable_pool() { return &pool_; }
+ const vector<AST*>& asts() const { return asts_; }
+ vector<AST*>* mutable_asts() { return &asts_; }
+
+ private:
+ char* buf_;
+ size_t len_;
+ uint64_t mtime_;
+ string filename_;
+ StringPool pool_;
+ vector<AST*> asts_;
+};
+
+#endif // FILE_H_