aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Flynn <jim.flynn@arm.com>2019-09-11 18:08:32 +0100
committerKeith Davis Arm <keith.davis@arm.com>2019-09-12 10:51:02 +0000
commitb0b802f979a647ace8676dfdda53f06416d3700b (patch)
tree2abeb75b74c24e96de5db26e6afddf701d39e516 /src
parent39f44af5890cb6627f721ee2f8cb92a0a4c10378 (diff)
downloadarmnn-b0b802f979a647ace8676dfdda53f06416d3700b.tar.gz
IVGCVSW-3856 Add Dependency breaking interface
Change-Id: I74947e592332f0a0d239219097c98109e86ac1f2 Signed-off-by: Jim Flynn <jim.flynn@arm.com>
Diffstat (limited to 'src')
-rw-r--r--src/profiling/IPeriodicCounterCapture.hpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/profiling/IPeriodicCounterCapture.hpp b/src/profiling/IPeriodicCounterCapture.hpp
new file mode 100644
index 0000000000..93df9d2541
--- /dev/null
+++ b/src/profiling/IPeriodicCounterCapture.hpp
@@ -0,0 +1,21 @@
+//
+// Copyright © 2019 Arm Ltd. All rights reserved.
+// SPDX-License-Identifier: MIT
+//
+
+#pragma once
+
+namespace armnn
+{
+
+namespace profiling
+{
+class IPeriodicCounterCapture
+{
+public:
+ virtual void Start() = 0;
+ virtual ~IPeriodicCounterCapture() {};
+};
+
+} // namespace profiling
+} // namespace armnn \ No newline at end of file