aboutsummaryrefslogtreecommitdiff
path: root/src/profiling/TimelinePacketWriterFactory.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/profiling/TimelinePacketWriterFactory.hpp')
-rw-r--r--src/profiling/TimelinePacketWriterFactory.hpp33
1 files changed, 0 insertions, 33 deletions
diff --git a/src/profiling/TimelinePacketWriterFactory.hpp b/src/profiling/TimelinePacketWriterFactory.hpp
deleted file mode 100644
index 607770f723..0000000000
--- a/src/profiling/TimelinePacketWriterFactory.hpp
+++ /dev/null
@@ -1,33 +0,0 @@
-//
-// Copyright © 2019 Arm Ltd. All rights reserved.
-// SPDX-License-Identifier: MIT
-//
-
-#pragma once
-
-#include "IBufferManager.hpp"
-
-#include <client/include/ISendTimelinePacket.hpp>
-
-#include <memory>
-
-namespace arm
-{
-
-namespace pipe
-{
-
-class TimelinePacketWriterFactory
-{
-public:
- TimelinePacketWriterFactory(IBufferManager& bufferManager) : m_BufferManager(bufferManager) {}
-
- std::unique_ptr<ISendTimelinePacket> GetSendTimelinePacket() const;
-
-private:
- IBufferManager& m_BufferManager;
-};
-
-} // namespace pipe
-
-} // namespace arm