| 101 | } // namespace |
| 102 | |
| 103 | XMLFeature::XMLFeature(Type const type) |
| 104 | { |
| 105 | ASSERT_NOT_EQUAL(type, Type::Unknown, ()); |
| 106 | |
| 107 | m_document.append_child(TypeToString(type).c_str()); |
| 108 | } |
| 109 | |
| 110 | XMLFeature::XMLFeature(string const & xml) |
| 111 | { |
nothing calls this directly
no test coverage detected