| 27 | } |
| 28 | |
| 29 | void NewCommandMacro::addNewCommand( |
| 30 | const wstring& name, const wstring& code, int nbargs) throw(ex_parse) { |
| 31 | checkNew(name); |
| 32 | _macrocode[name] = code; |
| 33 | MacroInfo::addMacro(name, new InflationMacroInfo(_instance, nbargs)); |
| 34 | } |
| 35 | |
| 36 | void NewCommandMacro::addNewCommand( |
| 37 | const wstring& name, |
nothing calls this directly
no outgoing calls
no test coverage detected