#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