blob: fc3f4b9a5dece0a5181bf74d9d42c0d5e3546da1 [file] [log] [blame]
Jim Flynn34430252022-03-04 15:03:58 +00001//
2// Copyright © 2022 Arm Ltd. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#pragma once
7
8namespace arm
9{
10
11namespace pipe
12{
13
14// forward declaration
15class IProfilingService;
16
17class IInitialiseProfilingService
18{
19public:
20 virtual ~IInitialiseProfilingService() {}
21 virtual void InitialiseProfilingService(IProfilingService& profilingService) = 0;
22};
23
24} // namespace pipe
25
26} // namespace arm