blob: 8676077878e292654696b1c0ffa4298c1964899f [file] [log] [blame]
//
// Copyright © 2019 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//
#pragma once
#include "IProfilingConnection.hpp"
#include <client/include/ProfilingOptions.hpp>
#include <memory>
namespace arm
{
namespace pipe
{
class IProfilingConnectionFactory
{
public:
using ExternalProfilingOptions = ProfilingOptions;
using IProfilingConnectionPtr = std::unique_ptr<IProfilingConnection>;
virtual ~IProfilingConnectionFactory() {}
virtual IProfilingConnectionPtr GetProfilingConnection(const ProfilingOptions& options) const = 0;
};
} // namespace pipe
} // namespace arm