| 87 | |
| 88 | |
| 89 | DataBuffer KeyValueStore::GetValueHash(const std::string& name) const |
| 90 | { |
| 91 | BNDataBuffer* buffer = BNGetKeyValueStoreValueHash(m_object, name.c_str()); |
| 92 | if (buffer == nullptr) |
| 93 | { |
| 94 | throw DatabaseException("Unknown key"); |
| 95 | } |
| 96 | return DataBuffer(buffer); |
| 97 | } |
| 98 | |
| 99 | |
| 100 | DataBuffer KeyValueStore::GetBuffer(const std::string& name) const |
nothing calls this directly
no test coverage detected