aboutsummaryrefslogtreecommitdiff
path: root/src/profiling/IReportStructure.hpp
diff options
context:
space:
mode:
authorCathal Corbett <cathal.corbett@arm.com>2022-03-04 10:36:34 +0000
committerCathal Corbett <cathal.corbett@arm.com>2022-03-07 11:19:08 +0000
commit19793551a67a5afd4cfb68e5dda7751e3d321a35 (patch)
tree355707246183ea982d4e6fead5be25f038111624 /src/profiling/IReportStructure.hpp
parent344302581b66677a748a456f370752db75adde21 (diff)
downloadarmnn-19793551a67a5afd4cfb68e5dda7751e3d321a35.tar.gz
IVGCVSW-6817 Add IProfilingService& as an argument to the IReportStructure
Signed-off-by: Cathal Corbett <cathal.corbett@arm.com> Change-Id: Ib8e75eea49debe3b1dd8fa72623a55b26cb6ded4
Diffstat (limited to 'src/profiling/IReportStructure.hpp')
-rw-r--r--src/profiling/IReportStructure.hpp4
1 files changed, 3 insertions, 1 deletions
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