| 325 | } |
| 326 | |
| 327 | std::string Metadata::GetJsonString() const |
| 328 | { |
| 329 | char* str = BNMetadataGetJsonString(m_object); |
| 330 | std::string result = std::string(str); |
| 331 | BNFreeString(str); |
| 332 | return result; |
| 333 | } |
| 334 | |
| 335 | bool Metadata::Append(Ref<Metadata> data) |
| 336 | { |
no outgoing calls
no test coverage detected