summaryrefslogtreecommitdiff
path: root/view/sharedcache/core/SharedCacheView.h
diff options
context:
space:
mode:
Diffstat (limited to 'view/sharedcache/core/SharedCacheView.h')
-rw-r--r--view/sharedcache/core/SharedCacheView.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/view/sharedcache/core/SharedCacheView.h b/view/sharedcache/core/SharedCacheView.h
index 1ead0b33..0ae43368 100644
--- a/view/sharedcache/core/SharedCacheView.h
+++ b/view/sharedcache/core/SharedCacheView.h
@@ -11,6 +11,7 @@
class SharedCacheView : public BinaryNinja::BinaryView
{
bool m_parseOnly;
+ BinaryNinja::Ref<BinaryNinja::Logger> m_logger;
public:
SharedCacheView(const std::string& typeName, BinaryView* data, bool parseOnly = false);
@@ -18,6 +19,9 @@ public:
~SharedCacheView() override = default;
bool Init() override;
+
+ // Initialized the shared cache controller for this view. This is what allows us to load images and regions.
+ bool InitController();
};