blob: 2fc950e4e6d82c57bba786d1acf455dfadec4d8b [file] [log] [blame]
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//
#pragma once
#include "common/include/Packet.hpp"
#include <armnn/profiling/ILocalPacketHandler.hpp>
#include <cstdint>
namespace armnn
{
namespace profiling
{
class IProfilingConnection
{
public:
virtual ~IProfilingConnection() {}
virtual bool IsOpen() const = 0;
virtual void Close() = 0;
virtual bool WritePacket(const unsigned char* buffer, uint32_t length) = 0;
virtual Packet ReadPacket(uint32_t timeout) = 0;
};
} // namespace profiling
} // namespace armnn