| 467 | } |
| 468 | |
| 469 | MetadataNode addWithType(const std::string& name, const std::string& value, |
| 470 | const std::string& type, const std::string& descrip = std::string()) |
| 471 | { |
| 472 | MetadataNodeImplPtr impl = m_impl->add(name); |
| 473 | impl->m_type = type; |
| 474 | impl->m_value = value; |
| 475 | impl->m_descrip = descrip; |
| 476 | return MetadataNode(impl); |
| 477 | } |
| 478 | |
| 479 | MetadataNode add(const std::string& name, const double& value, |
| 480 | const std::string& descrip = std::string(), size_t precision = 10) |
nothing calls this directly
no test coverage detected