! adds a new parameter to the node */
| 74 | |
| 75 | /*! adds a new parameter to the node */ |
| 76 | Ref<XML> add(const std::string& name, const std::string& val) { |
| 77 | parms[name] = val; |
| 78 | return this; |
| 79 | } |
| 80 | |
| 81 | /*! adds a new child */ |
| 82 | Ref<XML> add(const Ref<XML>& xml) { |
no test coverage detected