Change dependences
[satune.git] / src / AST / astnode.h
1 #ifndef ASTNODE_H
2 #define ASTNODE_H
3 #include "classlist.h"
4 #include "ops.h"
5 #include "astops.h"
6
7 class ASTNode {
8 public:
9         ASTNode(ASTNodeType _type) : type(_type) {}
10         ASTNodeType type;
11         CMEMALLOC;
12 };
13
14 #endif