summaryrefslogtreecommitdiff
path: root/plugins/workflow_objc/MessageHandler.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/workflow_objc/MessageHandler.h')
-rw-r--r--plugins/workflow_objc/MessageHandler.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/plugins/workflow_objc/MessageHandler.h b/plugins/workflow_objc/MessageHandler.h
deleted file mode 100644
index 8826b094..00000000
--- a/plugins/workflow_objc/MessageHandler.h
+++ /dev/null
@@ -1,16 +0,0 @@
-#pragma once
-
-#include <binaryninjaapi.h>
-
-class MessageHandler {
-
- std::set<uint64_t> m_msgSendFunctions;
- static std::set<uint64_t> findMsgSendFunctions(BinaryNinja::Ref<BinaryNinja::BinaryView> data);
-
-public:
- MessageHandler(BinaryNinja::Ref<BinaryNinja::BinaryView> data);
-
- std::set<uint64_t> getMessageSendFunctions() const { return m_msgSendFunctions; }
- bool hasMessageSendFunctions() const { return m_msgSendFunctions.size() != 0; }
- bool isMessageSend(uint64_t);
-};