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