summaryrefslogtreecommitdiff
path: root/src/astleaf.h
blob: 7cc9ddadd056644209fd31a9ab2ced681e800eea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef AST_LEAF_H
#define AST_LEAF_H

#include "astnode.h"
#include "variable.h"

class AstLeaf : public AstNode
{
public:
	AstLeaf( Type eType );
	virtual ~AstLeaf();

private:
	Variable vValue;
};

#endif