| 825 | } |
| 826 | |
| 827 | ElementPtr Document::createRoot(std::string_view _name) |
| 828 | { |
| 829 | clearRoot(); |
| 830 | mRoot = std::make_unique<Element>(_name, nullptr, ElementType::Normal); |
| 831 | return mRoot.get(); |
| 832 | } |
| 833 | |
| 834 | bool Document::parseLine(std::string& _line, ElementPtr& _element) |
| 835 | { |
no test coverage detected