// // Copyright © 2019 Arm Ltd. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include "IProfilingConnection.hpp" #include #include namespace armnn { namespace profiling { class IProfilingConnectionFactory { public: using ExternalProfilingOptions = IRuntime::CreationOptions::ExternalProfilingOptions; using IProfilingConnectionPtr = std::unique_ptr; virtual ~IProfilingConnectionFactory() {} virtual IProfilingConnectionPtr GetProfilingConnection(const ExternalProfilingOptions& options) const = 0; }; } // namespace profiling } // namespace armnn