| 103 | } |
| 104 | |
| 105 | void TeXFormulaSettingParser::parseSymbol2Formula( |
| 106 | _out_ map<int, string>& mappings, _out_ map<int, string>& txt) throw(ex_res_parse) { |
| 107 | const XMLElement* e = _root->FirstChildElement("CharacterToFormulaMappings"); |
| 108 | if (e != nullptr) { |
| 109 | e = e->FirstChildElement("Map"); |
| 110 | if (e != nullptr) addFormula2map(e, mappings, txt); |
| 111 | } |
| 112 | } |
| 113 | |
| 114 | void TeXFormulaSettingParser::parseSymbol( |
| 115 | _out_ map<int, string>& mappings, _out_ map<int, string>& txt) throw(ex_res_parse) { |
no test coverage detected