blob: 93df9d2541025e414f2733a874cb0ae204730790 [file] [log] [blame]
Jim Flynnb0b802f2019-09-11 18:08:32 +01001//
2// Copyright © 2019 Arm Ltd. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#pragma once
7
8namespace armnn
9{
10
11namespace profiling
12{
13class IPeriodicCounterCapture
14{
15public:
16 virtual void Start() = 0;
17 virtual ~IPeriodicCounterCapture() {};
18};
19
20} // namespace profiling
21} // namespace armnn