aboutsummaryrefslogtreecommitdiff
path: root/exec.h
diff options
context:
space:
mode:
authorShinichiro Hamaji <shinichiro.hamaji@gmail.com>2015-06-06 03:52:48 +0900
committerShinichiro Hamaji <shinichiro.hamaji@gmail.com>2015-06-18 11:25:42 +0900
commit776ca3085c44e6570813270df75278849c37d400 (patch)
tree6dc3f2d468cfd860347f2f9d519f49c2a38d4c64 /exec.h
parenta3caa8166baeb348f817eb1b4fa2e81672b3d77f (diff)
downloadkati-776ca3085c44e6570813270df75278849c37d400.tar.gz
[C++] The first commit for C++ version
16 tests out of 169 are passing.
Diffstat (limited to 'exec.h')
-rw-r--r--exec.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/exec.h b/exec.h
new file mode 100644
index 0000000..0f5944a
--- /dev/null
+++ b/exec.h
@@ -0,0 +1,13 @@
+#ifndef EXEC_H_
+#define EXEC_H_
+
+#include <vector>
+
+using namespace std;
+
+class DepNode;
+class Vars;
+
+void Exec(const vector<DepNode*>& roots, const Vars* vars);
+
+#endif // EXEC_H_