| 42 | } |
| 43 | |
| 44 | void GetXMLVersionFromDoc(TiXmlDocument& doc, std::string& str) { |
| 45 | TiXmlHandle hDoc(&doc); |
| 46 | TiXmlDeclaration* decl = ((hDoc.FirstChild()).ToNode())->ToDeclaration(); |
| 47 | str = decl->Version(); |
| 48 | } |
| 49 | |
| 50 | void HandleDetailMaps(std::vector<DetailMapInfo>& dmiv, const TiXmlElement* field) { |
| 51 | dmiv.clear(); |
no test coverage detected