blob: f61495e5c36faa03b62263c1ce9450c8a13f7085 [file] [log] [blame]
//
// Copyright © 2019 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//
#pragma once
#include "CommandHandlerFunctor.hpp"
#include "Packet.hpp"
#include "ProfilingStateMachine.hpp"
namespace armnn
{
namespace profiling
{
class ConnectionAcknowledgedCommandHandler : public CommandHandlerFunctor
{
public:
ConnectionAcknowledgedCommandHandler(uint32_t packetId,
uint32_t version,
ProfilingStateMachine& profilingStateMachine)
: CommandHandlerFunctor(packetId, version), m_StateMachine(profilingStateMachine) {}
void operator()(const Packet& packet) override;
private:
ProfilingStateMachine& m_StateMachine;
};
} // namespace profiling
} // namespace armnn