| 41 | using namespace std::literals::string_literals; |
| 42 | |
| 43 | class XmlException : public std::logic_error |
| 44 | { |
| 45 | public: |
| 46 | XmlException (const std::string & description) : logic_error (description) {} |
| 47 | }; |
| 48 | |
| 49 | |
| 50 | class AttributeNameValue |
no outgoing calls
no test coverage detected