blob: 1ae049733fbcdab12621ae10a32934eea7b9ba56 [file] [log] [blame]
Keith Davis33ed2212020-03-30 10:43:41 +01001//
2// Copyright © 2020 Arm Ltd. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#pragma once
7
8namespace armnn
9{
10
11namespace profiling
12{
13
14class IReportStructure
15{
16public:
17 virtual ~IReportStructure() {}
18 virtual void ReportStructure() = 0;
19};
20
21} // namespace profiling
22
23} // namespace armnn
24