| 119 | } |
| 120 | |
| 121 | void IMetaData::FloatProperty(const std::string& tag, double value) { |
| 122 | auto xml = CreateXmlFile(); |
| 123 | xml->ParseString(XmlSnippet()); |
| 124 | xml->SetProperty(tag, value); |
| 125 | XmlSnippet(xml->WriteString(true)); |
| 126 | } |
| 127 | |
| 128 | double IMetaData::FloatProperty(const std::string& tag) const { |
| 129 | auto xml = CreateXmlFile(); |
no test coverage detected