diff options
Diffstat (limited to 'binaryview.cpp')
| -rw-r--r-- | binaryview.cpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/binaryview.cpp b/binaryview.cpp index 4d5c839a..d5776bc7 100644 --- a/binaryview.cpp +++ b/binaryview.cpp @@ -308,6 +308,30 @@ bool BinaryView::IsModified() const } +bool BinaryView::IsAnalysisChanged() const +{ + return m_file->IsAnalysisChanged(); +} + + +bool BinaryView::IsBackedByDatabase() const +{ + return m_file->IsBackedByDatabase(); +} + + +bool BinaryView::CreateDatabase(const string& path) +{ + return m_file->CreateDatabase(path, this); +} + + +bool BinaryView::SaveAutoSnapshot() +{ + return m_file->SaveAutoSnapshot(this); +} + + void BinaryView::BeginUndoActions() { m_file->BeginUndoActions(); |
