summaryrefslogtreecommitdiff
path: root/view/sharedcache/ui/SharedCacheBDNotifications.h
diff options
context:
space:
mode:
authorMason Reed <mason@vector35.com>2025-03-10 11:05:40 -0400
committerMason Reed <mason@vector35.com>2025-04-02 05:36:54 -0400
commit25cc02431b61097b2adfc2fbc493b648b0300c3b (patch)
treea79d9c4f4f67234d3bf9bda413e8608f479a4cc8 /view/sharedcache/ui/SharedCacheBDNotifications.h
parentfa85bf28502286c4821427c5d0ed91a7ed46f8f6 (diff)
[SharedCache] Refactor Shared Cache
In absence of a better name, this commit refactors the shared cache code.
Diffstat (limited to 'view/sharedcache/ui/SharedCacheBDNotifications.h')
-rw-r--r--view/sharedcache/ui/SharedCacheBDNotifications.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/view/sharedcache/ui/SharedCacheBDNotifications.h b/view/sharedcache/ui/SharedCacheBDNotifications.h
deleted file mode 100644
index 632fca28..00000000
--- a/view/sharedcache/ui/SharedCacheBDNotifications.h
+++ /dev/null
@@ -1,20 +0,0 @@
-//
-// 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;
-};