aboutsummaryrefslogtreecommitdiff
path: root/src/profiling/IPacketBuffer.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/profiling/IPacketBuffer.hpp')
-rw-r--r--src/profiling/IPacketBuffer.hpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/profiling/IPacketBuffer.hpp b/src/profiling/IPacketBuffer.hpp
index b4bd615bab..c61d2327f4 100644
--- a/src/profiling/IPacketBuffer.hpp
+++ b/src/profiling/IPacketBuffer.hpp
@@ -5,6 +5,8 @@
#pragma once
+#include <memory>
+
namespace armnn
{
@@ -35,6 +37,8 @@ public:
virtual unsigned char* GetWritableData() = 0;
};
+using IPacketBufferPtr = std::unique_ptr<IPacketBuffer>;
+
} // namespace profiling
-} // namespace armnn \ No newline at end of file
+} // namespace armnn