summaryrefslogtreecommitdiff
path: root/src/astleaf.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/astleaf.h')
-rw-r--r--src/astleaf.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/astleaf.h b/src/astleaf.h
index 7cc9dda..757a267 100644
--- a/src/astleaf.h
+++ b/src/astleaf.h
@@ -2,16 +2,17 @@
2#define AST_LEAF_H 2#define AST_LEAF_H
3 3
4#include "astnode.h" 4#include "astnode.h"
5#include "variable.h"
6 5
7class AstLeaf : public AstNode 6class AstLeaf : public AstNode
8{ 7{
8friend Bu::Formatter &operator<<( Bu::Formatter &f, const AstLeaf &l );
9public: 9public:
10 AstLeaf( Type eType ); 10 AstLeaf( Type eType );
11 virtual ~AstLeaf(); 11 virtual ~AstLeaf();
12 12
13private: 13private:
14 Variable vValue;
15}; 14};
16 15
16Bu::Formatter &operator<<( Bu::Formatter &f, const AstLeaf &l );
17
17#endif 18#endif