summaryrefslogtreecommitdiff
path: root/view/sharedcache/ui/SharedCacheBDNotifications.h
diff options
context:
space:
mode:
Diffstat (limited to 'view/sharedcache/ui/SharedCacheBDNotifications.h')
-rw-r--r--view/sharedcache/ui/SharedCacheBDNotifications.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/view/sharedcache/ui/SharedCacheBDNotifications.h b/view/sharedcache/ui/SharedCacheBDNotifications.h
new file mode 100644
index 00000000..632fca28
--- /dev/null
+++ b/view/sharedcache/ui/SharedCacheBDNotifications.h
@@ -0,0 +1,20 @@
+//
+// Created by kat on 8/22/24.
+//
+
+#pragma once
+
+#include <binaryninjaapi.h>
+#include "ui/uicontext.h"
+#include "SharedCacheUINotifications.h"
+
+using namespace BinaryNinja;
+
+class SharedCacheBDNotifications : public BinaryDataNotification
+{
+public:
+ SharedCacheBDNotifications(Ref<BinaryView> view);
+ void OnAnalysisFunctionAdded(BinaryView* view, Function* func) override;
+ void OnDataVariableAdded(BinaryView* view, const DataVariable& var) override;
+ void OnSectionAdded(BinaryView* data, Section* section) override;
+};