| 211 | |
| 212 | template <> |
| 213 | inline void MetadataNodeImpl::setValue(const bool& b) |
| 214 | { |
| 215 | m_type = "boolean"; |
| 216 | m_value = b ? "true" : "false"; |
| 217 | } |
| 218 | |
| 219 | template <> |
| 220 | inline void MetadataNodeImpl::setValue(const std::string& s) |
no test coverage detected