xref: /aosp_15_r20/external/armnn/profiling/client/src/ProfilingConnectionFactory.hpp (revision 89c4ff92f2867872bb9e2354d150bf0c8c502810)
1 //
2 // Copyright © 2019 Arm Ltd and Contributors. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
6 #pragma once
7 
8 #include "IProfilingConnectionFactory.hpp"
9 
10 namespace arm
11 {
12 
13 namespace pipe
14 {
15 
16 class ProfilingConnectionFactory final : public IProfilingConnectionFactory
17 {
18 public:
19     ProfilingConnectionFactory()  = default;
20     ~ProfilingConnectionFactory() = default;
21 
22     IProfilingConnectionPtr GetProfilingConnection(const ProfilingOptions& options) const override;
23 };
24 
25 }    // namespace pipe
26 
27 }    // namespace arm
28