////////////////////////////////////////////////////////////////////////// InitPredefinedVariables -- //////////////////////////////////////////////////////////////////////////
| 139 | // InitPredefinedVariables -- |
| 140 | /////////////////////////////////////////////////////////////////////////////// |
| 141 | void cGenreParseInfo::InitPredefinedVariables() |
| 142 | { |
| 143 | iParserGenreUtil* pGU = iTWFactory::GetInstance()->CreateParserGenreUtil(); |
| 144 | |
| 145 | TSTRING sVarName, sValue; |
| 146 | int index = 0; |
| 147 | while (pGU->EnumPredefinedVariables(index++, sVarName, sValue)) |
| 148 | { |
| 149 | mLocalPredefVarTable.Insert(sVarName, sValue); |
| 150 | } |
| 151 | |
| 152 | delete pGU; |
| 153 | } |
| 154 | |
| 155 | |
| 156 | /////////////////////////////////////////////////////////////////////////////// |
nothing calls this directly
no test coverage detected