summaryrefslogtreecommitdiff
path: root/src/astnode.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2011-12-18 01:07:03 -0700
committerMike Buland <eichlan@xagasoft.com>2011-12-18 01:07:03 -0700
commiteb053bb851d729fbe4db7959143df5cfb2063793 (patch)
tree0c49ad61b11611c5cdf17e8bedf13bbdb9a3d210 /src/astnode.h
parent1368849e36e1b5ecd0d595b713ca73f9d88da38b (diff)
downloadstage-eb053bb851d729fbe4db7959143df5cfb2063793.tar.gz
stage-eb053bb851d729fbe4db7959143df5cfb2063793.tar.bz2
stage-eb053bb851d729fbe4db7959143df5cfb2063793.tar.xz
stage-eb053bb851d729fbe4db7959143df5cfb2063793.zip
Setting up AstNode & Variable classes.
Diffstat (limited to 'src/astnode.h')
-rw-r--r--src/astnode.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/astnode.h b/src/astnode.h
new file mode 100644
index 0000000..3344ca2
--- /dev/null
+++ b/src/astnode.h
@@ -0,0 +1,15 @@
1#ifndef AST_NODE_H
2#define AST_NODE_H
3
4#include <bu/list.h>
5
6class AstNode
7{
8public:
9 AstNode();
10 virtual ~AstNode();
11
12private:
13};
14
15#endif