diff options
| author | Brian Potchik <brian@vector35.com> | 2021-08-04 11:09:16 -0400 |
|---|---|---|
| committer | Brian Potchik <brian@vector35.com> | 2021-08-04 11:09:16 -0400 |
| commit | 98c2b6f32e3181a3a3462c6bd41306ff674a515b (patch) | |
| tree | 189c5e7badf84a92b44e31fb2ad3fa18a01ed601 /interaction.cpp | |
| parent | 754fb4d12a85cdf8c791725002c9a1e78894d8c0 (diff) | |
Add query mode to flow graph reports.
Diffstat (limited to 'interaction.cpp')
| -rw-r--r-- | interaction.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/interaction.cpp b/interaction.cpp index 7a7fa6bb..05420f17 100644 --- a/interaction.cpp +++ b/interaction.cpp @@ -755,3 +755,9 @@ void ReportCollection::AddGraphReport(Ref<BinaryView> view, const string& title, { BNAddGraphReportToCollection(m_object, view ? view->GetObject() : nullptr, title.c_str(), graph->GetObject()); } + + +void ReportCollection::UpdateFlowGraph(size_t i, Ref<FlowGraph> graph) +{ + BNUpdateReportFlowGraph(m_object, i, graph->GetObject()); +} |
