// // Copyright © 2020 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include #include namespace arm { namespace pipe { class PrintPacketHeaderHandler : public ILocalPacketHandler { virtual std::vector GetHeadersAccepted(); virtual void HandlePacket(const arm::pipe::Packet& packet); }; } // namespace pipe } // namespace arm