xref: /aosp_15_r20/external/armnn/profiling/client/include/IReportStructure.hpp (revision 89c4ff92f2867872bb9e2354d150bf0c8c502810)
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 IProfilingService;
15 
16 class IReportStructure
17 {
18 public:
~IReportStructure()19     virtual ~IReportStructure() {}
20     virtual void ReportStructure(arm::pipe::IProfilingService& profilingService) = 0;
21 };
22 
23 } // namespace pipe
24 
25 } // namespace arm
26 
27