////////////////////////////////////////////////////////////////////////// AddRule -- adds the specified rule to our list. we will eventually call MakeFCOSpecs(), which will use this list as its source. NOTE: the list is responsible for freeing the pointers //////////////////////////////////////////////////////////////////////////
| 102 | // NOTE: the list is responsible for freeing the pointers |
| 103 | /////////////////////////////////////////////////////////////////////////////// |
| 104 | void cGenreParseInfo::AddRule(const cParseRule* pnode) |
| 105 | { |
| 106 | mRuleList.push_back(pnode); |
| 107 | } |
| 108 | |
| 109 | /////////////////////////////////////////////////////////////////////////////// |
| 110 | // RulePointAlreadyDefined -- returns true if the given name was already used |