| 216 | } |
| 217 | |
| 218 | ElementPtr Element::createChild(std::string_view _name, std::string_view _content, ElementType _type) |
| 219 | { |
| 220 | return mChildren.emplace_back(std::make_unique<Element>(_name, this, _type, _content)).get(); |
| 221 | } |
| 222 | |
| 223 | void Element::removeChild(ElementPtr _child) |
| 224 | { |
no test coverage detected