aboutsummaryrefslogtreecommitdiffstats
path: root/c_parser/include/ast_expression.hpp~
diff options
context:
space:
mode:
Diffstat (limited to 'c_parser/include/ast_expression.hpp~')
-rw-r--r--c_parser/include/ast_expression.hpp~11
1 files changed, 11 insertions, 0 deletions
diff --git a/c_parser/include/ast_expression.hpp~ b/c_parser/include/ast_expression.hpp~
new file mode 100644
index 0000000..7bd9814
--- /dev/null
+++ b/c_parser/include/ast_expression.hpp~
@@ -0,0 +1,11 @@
+#ifndef AST_EXPRESSION_HPP
+#define AST_EXPRESSION_HPP
+
+class Expression {
+public:
+ virtual ~Expression() {}
+
+ virtual void print() const = 0;
+};
+
+#endif