aboutsummaryrefslogtreecommitdiff
path: root/profiling/client/include/IReportStructure.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'profiling/client/include/IReportStructure.hpp')
-rw-r--r--profiling/client/include/IReportStructure.hpp26
1 files changed, 26 insertions, 0 deletions
diff --git a/profiling/client/include/IReportStructure.hpp b/profiling/client/include/IReportStructure.hpp
new file mode 100644
index 0000000000..8891cbd3b0
--- /dev/null
+++ b/profiling/client/include/IReportStructure.hpp
@@ -0,0 +1,26 @@
+//
+// Copyright © 2020 Arm Ltd. All rights reserved.
+// SPDX-License-Identifier: MIT
+//
+
+#pragma once
+
+namespace arm
+{
+
+namespace pipe
+{
+
+class IProfilingService;
+
+class IReportStructure
+{
+public:
+ virtual ~IReportStructure() {}
+ virtual void ReportStructure(arm::pipe::IProfilingService& profilingService) = 0;
+};
+
+} // namespace pipe
+
+} // namespace arm
+