blob: 3cd5921e512a0e7461c05bd4245d7f06733c1151 [file] [log] [blame]
Jim Flynn4e755a52020-03-29 17:48:26 +01001//
2// Copyright © 2020 Arm Ltd. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#pragma once
7
8#include <armnn/profiling/ILocalPacketHandler.hpp>
9#include "Packet.hpp"
10
11namespace armnn
12{
13
14namespace profiling
15{
16
17class PrintPacketHeaderHandler : public ILocalPacketHandler
18{
19 virtual std::vector<uint32_t> GetHeadersAccepted();
20
21 virtual void HandlePacket(const Packet& packet);
22};
23
24} // namespace profiling
25
26} // namespace armnn