diff options
| -rw-r--r-- | ui/reflectionview.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ui/reflectionview.h b/ui/reflectionview.h index a4816253..4b1f27a0 100644 --- a/ui/reflectionview.h +++ b/ui/reflectionview.h @@ -21,11 +21,17 @@ class BINARYNINJAUIAPI ReflectionView: public QWidget, public DockContextHandler ViewFrame* m_frame; BinaryViewRef m_data; DisassemblyContainer* m_disassemblyContainer; + std::map<BNFunctionGraphType, BNFunctionGraphType> m_ilMap; + bool m_ilSync; + bool m_locationSync; public: ReflectionView(ViewFrame* frame, BinaryViewRef data); ~ReflectionView(); + void toggleILSync(); + void toggleLocationSync(); + virtual void notifyViewLocationChanged(View* view, const ViewLocation& viewLocation) override; virtual void notifyVisibilityChanged(bool visible) override; virtual bool shouldBeVisible(ViewFrame* frame) override; |
