blob: 78eda79ef0b6a80ddb0472589b49f6430e13bd58 [file] [log] [blame]
//
// Copyright © 2019 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//
#include "TimelinePacketWriterFactory.hpp"
#include "SendTimelinePacket.hpp"
namespace arm
{
namespace pipe
{
std::unique_ptr<ISendTimelinePacket> TimelinePacketWriterFactory::GetSendTimelinePacket() const
{
return std::make_unique<SendTimelinePacket>(m_BufferManager);
}
} // namespace pipe
} // namespace arm