1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#ifndef AST_BRANCH_H #define AST_BRANCH_H #include "astnode.h" #include <bu/list.h> class AstBranch : public AstNode { public: AstBranch( Type eType ); virtual ~AstBranch(); typedef Bu::List<AstNode *> NodeList; private: NodeList lNodes; }; #endif