aboutsummaryrefslogtreecommitdiffstats
path: root/c_parser/include/top_ast.hpp~
diff options
context:
space:
mode:
Diffstat (limited to 'c_parser/include/top_ast.hpp~')
-rw-r--r--c_parser/include/top_ast.hpp~14
1 files changed, 14 insertions, 0 deletions
diff --git a/c_parser/include/top_ast.hpp~ b/c_parser/include/top_ast.hpp~
new file mode 100644
index 0000000..0252bde
--- /dev/null
+++ b/c_parser/include/top_ast.hpp~
@@ -0,0 +1,14 @@
+#ifndef TOP_AST_HPP
+#define TOP_AST_HPP
+
+#include "ast.hpp"
+
+#include <vector>
+
+class top_ast {
+public:
+private:
+ std::vector<const ast_Base*> ast_vec;
+};
+
+#endif