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