diff options
| author | Rusty Wagner <rusty@vector35.com> | 2015-04-27 02:15:16 -0400 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2015-04-27 02:15:16 -0400 |
| commit | 190c491d4f6ea4cdb089f5efee15e4fcf65715d3 (patch) | |
| tree | 22a9c96c5d427eb48b3437c5f92d923a89048222 /binaryview.cpp | |
| parent | f576bc88bdecba3d634482777142a2d7c84600c6 (diff) | |
Initial database save/open, just file contents right now
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(); |
