| 283 | |
| 284 | |
| 285 | DataBuffer Snapshot::GetFileContentsHash() |
| 286 | { |
| 287 | BNDataBuffer* buffer = BNGetSnapshotFileContentsHash(m_object); |
| 288 | if (buffer == nullptr) |
| 289 | { |
| 290 | throw DatabaseException("BNGetSnapshotFileContentsHash"); |
| 291 | } |
| 292 | return DataBuffer(buffer); |
| 293 | } |
| 294 | |
| 295 | |
| 296 | DataBuffer Snapshot::GetUndoData() |
nothing calls this directly
no test coverage detected