From 404b27569523f4cdd49752e7ae1633e359ba2190 Mon Sep 17 00:00:00 2001 From: Narumol Prangnawarat Date: Tue, 24 Sep 2019 17:23:16 +0100 Subject: IVGCVSW-3902 Create IReadOnlyPacketBuffer, IPacketBuffer and IBufferManager interfaces * Create IReadOnlyPacketBuffer, IPacketBuffer and IBufferManager interfaces * Add Read and Write util functions that use IPacketBuffer * Add MockBufferManager using IBufferManager for testing * Modify SendCounterPacket to use IBufferManager * Modify MockStreamCounterBuffer to use IBufferManager * Remove IBufferWrapper and MockBuffer * Add MockPacketBuffer for testing * Modify unit tests to use the new interfaces Signed-off-by: Narumol Prangnawarat Change-Id: Ib86768187e032f07169aa39367a418b7665c9f03 --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 6690e8624d..3e4d9c08d2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -438,9 +438,10 @@ list(APPEND armnn_sources src/profiling/EncodeVersion.hpp src/profiling/Holder.cpp src/profiling/Holder.hpp - src/profiling/IBufferWrapper.hpp + src/profiling/IBufferManager.hpp src/profiling/ICounterDirectory.hpp src/profiling/ISendCounterPacket.hpp + src/profiling/IPacketBuffer.hpp src/profiling/IPeriodicCounterCapture.hpp src/profiling/IProfilingConnection.hpp src/profiling/IReadCounterValue.hpp -- cgit v1.2.1