From 19793551a67a5afd4cfb68e5dda7751e3d321a35 Mon Sep 17 00:00:00 2001 From: Cathal Corbett Date: Fri, 4 Mar 2022 10:36:34 +0000 Subject: IVGCVSW-6817 Add IProfilingService& as an argument to the IReportStructure Signed-off-by: Cathal Corbett Change-Id: Ib8e75eea49debe3b1dd8fa72623a55b26cb6ded4 --- src/profiling/IReportStructure.hpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/profiling/IReportStructure.hpp') diff --git a/src/profiling/IReportStructure.hpp b/src/profiling/IReportStructure.hpp index 82a84ff6cf..8891cbd3b0 100644 --- a/src/profiling/IReportStructure.hpp +++ b/src/profiling/IReportStructure.hpp @@ -11,11 +11,13 @@ namespace arm namespace pipe { +class IProfilingService; + class IReportStructure { public: virtual ~IReportStructure() {} - virtual void ReportStructure() = 0; + virtual void ReportStructure(arm::pipe::IProfilingService& profilingService) = 0; }; } // namespace pipe -- cgit v1.2.1