removing true nodes from the OrderGraph
[satune.git] / src / AST / astnode.h
1 #ifndef ASTNODE_H
2 #define ASTNODE_H
3 #include "classlist.h"
4 #include "ops.h"
5
6 struct ASTNode {
7         ASTNodeType type;
8 };
9
10 #define GETASTNODETYPE(o) (((ASTNode *) o)->type)
11 #endif