aboutsummaryrefslogtreecommitdiff
path: root/src/astbranch.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/astbranch.h')
-rw-r--r--src/astbranch.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/astbranch.h b/src/astbranch.h
index b582b9f..8140d3c 100644
--- a/src/astbranch.h
+++ b/src/astbranch.h
@@ -8,18 +8,18 @@
8class AstBranch : public AstNode 8class AstBranch : public AstNode
9{ 9{
10public: 10public:
11 typedef Bu::List<AstNode *> NodeList; 11 typedef Bu::List<AstNode *> NodeList;
12 typedef Bu::List<NodeList> BranchList; 12 typedef Bu::List<NodeList> BranchList;
13 AstBranch( const Location &loc, Type eType ); 13 AstBranch( const Location &loc, Type eType );
14 virtual ~AstBranch(); 14 virtual ~AstBranch();
15 15
16 void addBranch(); 16 void addBranch();
17 void addNode( AstNode *pNode ); 17 void addNode( AstNode *pNode );
18 18
19 BranchList::const_iterator getBranchBegin() const; 19 BranchList::const_iterator getBranchBegin() const;
20 20
21private: 21private:
22 BranchList lBranch; 22 BranchList lBranch;
23}; 23};
24 24
25Bu::Formatter &operator<<( Bu::Formatter &f, const AstBranch &l ); 25Bu::Formatter &operator<<( Bu::Formatter &f, const AstBranch &l );