blob: 82a84ff6cfba1c0c411945a89a630b939ec7f2ac [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
Cathal Corbett5aa9fd72022-02-25 15:33:28 +00008namespace arm
Keith Davis33ed2212020-03-30 10:43:41 +01009{
10
Cathal Corbett5aa9fd72022-02-25 15:33:28 +000011namespace pipe
Keith Davis33ed2212020-03-30 10:43:41 +010012{
13
14class IReportStructure
15{
16public:
17 virtual ~IReportStructure() {}
18 virtual void ReportStructure() = 0;
19};
20
Cathal Corbett5aa9fd72022-02-25 15:33:28 +000021} // namespace pipe
Keith Davis33ed2212020-03-30 10:43:41 +010022
Cathal Corbett5aa9fd72022-02-25 15:33:28 +000023} // namespace arm
Keith Davis33ed2212020-03-30 10:43:41 +010024