blob: 82a84ff6cfba1c0c411945a89a630b939ec7f2ac [file] [log] [blame]
//
// Copyright © 2020 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//
#pragma once
namespace arm
{
namespace pipe
{
class IReportStructure
{
public:
virtual ~IReportStructure() {}
virtual void ReportStructure() = 0;
};
} // namespace pipe
} // namespace arm