| 272 | |
| 273 | |
| 274 | DataBuffer Snapshot::GetFileContents() |
| 275 | { |
| 276 | BNDataBuffer* buffer = BNGetSnapshotFileContents(m_object); |
| 277 | if (buffer == nullptr) |
| 278 | { |
| 279 | throw DatabaseException("BNGetSnapshotFileContents"); |
| 280 | } |
| 281 | return DataBuffer(buffer); |
| 282 | } |
| 283 | |
| 284 | |
| 285 | DataBuffer Snapshot::GetFileContentsHash() |
nothing calls this directly
no test coverage detected