aboutsummaryrefslogtreecommitdiff
path: root/src/profiling/test/PrintPacketHeaderHandler.hpp
blob: c5f426c7614b4ea3d97efe861179a6e2313e8a9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//
// Copyright © 2020 Arm Ltd and Contributors. All rights reserved.
// SPDX-License-Identifier: MIT
//

#pragma once

#include <client/include/ILocalPacketHandler.hpp>

#include <common/include/Packet.hpp>

namespace arm
{

namespace pipe
{

class PrintPacketHeaderHandler : public ILocalPacketHandler
{
    virtual std::vector<uint32_t> GetHeadersAccepted();

    virtual void HandlePacket(const arm::pipe::Packet& packet);
};

} // namespace pipe

} // namespace arm