aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/runtime/OffsetLifetimeManager.h
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute/runtime/OffsetLifetimeManager.h')
-rw-r--r--arm_compute/runtime/OffsetLifetimeManager.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/arm_compute/runtime/OffsetLifetimeManager.h b/arm_compute/runtime/OffsetLifetimeManager.h
index 26aeb1ef6a..748f3b6f81 100644
--- a/arm_compute/runtime/OffsetLifetimeManager.h
+++ b/arm_compute/runtime/OffsetLifetimeManager.h
@@ -41,6 +41,9 @@ class IMemoryPool;
class OffsetLifetimeManager : public ISimpleLifetimeManager
{
public:
+ using info_type = BlobInfo;
+
+public:
/** Constructor */
OffsetLifetimeManager();
/** Prevent instances of this class to be copy constructed */
@@ -51,6 +54,11 @@ public:
OffsetLifetimeManager(OffsetLifetimeManager &&) = default;
/** Allow instances of this class to be moved */
OffsetLifetimeManager &operator=(OffsetLifetimeManager &&) = default;
+ /** Accessor to the pool internal configuration meta-data
+ *
+ * @return Pool internal configuration meta-data
+ */
+ const info_type &info() const;
// Inherited methods overridden:
std::unique_ptr<IMemoryPool> create_pool(IAllocator *allocator) override;