- Migrated from Boolean to tristate ::collect method.
This commit is contained in:
Paul Beckingham 2014-08-18 23:18:41 -04:00
parent 4447200357
commit e9f71b152c
2 changed files with 29 additions and 65 deletions

View file

@ -47,9 +47,8 @@ public:
bool exactMatch (const std::string&, const std::string&) const;
bool canonicalize (std::string&, const std::string&, const std::string&) const;
enum collectType {collectLeaf, collectAll, collectUnterminated};
enum collectType {collectLeaf, collectAll, collectTerminated};
void collect (std::vector <Tree*>&, collectType = collectLeaf, Tree* tree = NULL) const;
void collect (std::vector <Tree*>&, bool, Tree* tree = NULL) const;
void findBinary ();
void resolveAliases ();