| 445 | { return MetadataNode(m_impl->addList(node.m_impl)); } |
| 446 | |
| 447 | MetadataNode addEncoded(const std::string& name, |
| 448 | const unsigned char *buf, size_t size, |
| 449 | const std::string& descrip = std::string()) |
| 450 | { |
| 451 | MetadataNodeImplPtr impl = m_impl->add(name); |
| 452 | impl->setValue(Utils::base64_encode(buf, size)); |
| 453 | impl->m_type = "base64Binary"; |
| 454 | impl->m_descrip = descrip; |
| 455 | return MetadataNode(impl); |
| 456 | } |
| 457 | |
| 458 | MetadataNode addListEncoded(const std::string& name, |
| 459 | const unsigned char *buf, size_t size, |
nothing calls this directly
no test coverage detected