| 294 | |
| 295 | |
| 296 | DataBuffer Snapshot::GetUndoData() |
| 297 | { |
| 298 | BNDataBuffer* buffer = BNGetSnapshotUndoData(m_object); |
| 299 | if (buffer == nullptr) |
| 300 | { |
| 301 | throw DatabaseException("BNGetSnapshotUndoData"); |
| 302 | } |
| 303 | return DataBuffer(buffer); |
| 304 | } |
| 305 | |
| 306 | |
| 307 | vector<Ref<UndoEntry>> Snapshot::GetUndoEntries() |
nothing calls this directly
no test coverage detected