summaryrefslogtreecommitdiff
path: root/src/astnode.h
blob: 3344ca23ec5de5ae77152573b5d0faebcd46e418 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef AST_NODE_H
#define AST_NODE_H

#include <bu/list.h>

class AstNode
{
public:
	AstNode();
	virtual ~AstNode();

private:
};

#endif