| 966 | } |
| 967 | |
| 968 | Meta::Contact::Contact(std::string name, std::string email) |
| 969 | : name(std::move(name)) |
| 970 | , email(std::move(email)) |
| 971 | { |
| 972 | // This has to be provided manually since we have another constructor |
| 973 | } |
| 974 | |
| 975 | Meta::Contact::Contact(const XERCES_CPP_NAMESPACE::DOMElement* elem) |
| 976 | { |
nothing calls this directly
no test coverage detected