aboutsummaryrefslogtreecommitdiff
path: root/src/profiling/IBufferWrapper.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/profiling/IBufferWrapper.hpp')
-rw-r--r--src/profiling/IBufferWrapper.hpp30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/profiling/IBufferWrapper.hpp b/src/profiling/IBufferWrapper.hpp
deleted file mode 100644
index 9c38ab1dc8..0000000000
--- a/src/profiling/IBufferWrapper.hpp
+++ /dev/null
@@ -1,30 +0,0 @@
-//
-// Copyright © 2017 Arm Ltd. All rights reserved.
-// SPDX-License-Identifier: MIT
-//
-
-#pragma once
-
-namespace armnn
-{
-
-namespace profiling
-{
-
-class IBufferWrapper
-{
-public:
- virtual ~IBufferWrapper() {}
-
- virtual unsigned char* Reserve(unsigned int requestedSize, unsigned int& reservedSize) = 0;
-
- virtual void Commit(unsigned int size) = 0;
-
- virtual const unsigned char* GetReadBuffer(unsigned int& size) = 0;
-
- virtual void Release(unsigned int size) = 0;
-};
-
-} // namespace profiling
-
-} // namespace armnn