blob: 450f90fd2bd84c4c9699139d9937f72b6949b08e [file] [log] [blame]
//
// Copyright © 2020 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//
#pragma once
#include <CommandHandlerFunctor.hpp>
#include <armnn/utility/IgnoreUnused.hpp>
#include <vector>
namespace armnn
{
namespace gatordmock
{
class StubCommandHandler : public profiling::CommandHandlerFunctor
{
public:
/**
*
* @param packetId The id of packets this handler will process.
* @param version The version of that id.
*/
StubCommandHandler(uint32_t familyId,
uint32_t packetId,
uint32_t version)
: CommandHandlerFunctor(familyId, packetId, version)
{}
void operator()(const armnn::profiling::Packet& packet) override
{
//No op
IgnoreUnused(packet);
}
};
} // namespace gatordmock
} // namespace armnn