• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //
2 // Copyright © 2019 Arm Ltd. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
6 #pragma once
7 
8 namespace arm
9 {
10 namespace pipe
11 {
12 
13 class IPeriodicCounterCapture
14 {
15 public:
~IPeriodicCounterCapture()16     virtual ~IPeriodicCounterCapture() {}
17 
18     virtual void Start() = 0;
19     virtual void Stop() = 0;
20 };
21 
22 } // namespace pipe
23 } // namespace arm
24