| 133 | |
| 134 | |
| 135 | void PluginList::addPluginNames(TiXmlElement* pluginNamesElement) |
| 136 | { |
| 137 | TiXmlElement *pluginNameNode = pluginNamesElement->FirstChildElement(); |
| 138 | |
| 139 | while(pluginNameNode) |
| 140 | { |
| 141 | if (pluginNameNode->Attribute(_T("md5")) && pluginNameNode->Attribute(_T("name"))) |
| 142 | { |
| 143 | _pluginRealNames[pluginNameNode->Attribute(_T("md5"))] = pluginNameNode->Attribute(_T("name")); |
| 144 | } |
| 145 | |
| 146 | pluginNameNode = (TiXmlElement*)pluginNamesElement->IterateChildren(pluginNameNode); |
| 147 | } |
| 148 | } |
| 149 | |
| 150 | |
| 151 | BOOL PluginList::parsePluginFile(CONST TCHAR *filename) |
nothing calls this directly
no test coverage detected