| 51 | } |
| 52 | |
| 53 | void DefaultTeXFontParser::parse_lig( |
| 54 | const XMLElement* e, wchar_t c, _out_ FontInfo& f) throw(ex_xml_parse) { |
| 55 | int code = getIntAndCheck("code", e); |
| 56 | int lig = getIntAndCheck("ligCode", e); |
| 57 | f.addLigture(c, (wchar_t)code, (wchar_t)lig); |
| 58 | } |
| 59 | |
| 60 | void DefaultTeXFontParser::parse_larger( |
| 61 | const XMLElement* e, wchar_t c, _out_ FontInfo& f) throw(ex_xml_parse) { |
nothing calls this directly
no test coverage detected