aboutsummaryrefslogtreecommitdiff
path: root/src/profiling/RequestCounterDirectoryCommandHandler.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/profiling/RequestCounterDirectoryCommandHandler.hpp')
-rw-r--r--src/profiling/RequestCounterDirectoryCommandHandler.hpp51
1 files changed, 0 insertions, 51 deletions
diff --git a/src/profiling/RequestCounterDirectoryCommandHandler.hpp b/src/profiling/RequestCounterDirectoryCommandHandler.hpp
deleted file mode 100644
index 2582fb2e0a..0000000000
--- a/src/profiling/RequestCounterDirectoryCommandHandler.hpp
+++ /dev/null
@@ -1,51 +0,0 @@
-//
-// Copyright © 2019 Arm Ltd. All rights reserved.
-// SPDX-License-Identifier: MIT
-//
-
-#pragma once
-
-#include "ProfilingStateMachine.hpp"
-
-#include <client/include/ISendCounterPacket.hpp>
-#include <client/include/ISendTimelinePacket.hpp>
-
-#include <common/include/CommandHandlerFunctor.hpp>
-#include <common/include/Packet.hpp>
-
-namespace arm
-{
-
-namespace pipe
-{
-
-class RequestCounterDirectoryCommandHandler : public arm::pipe::CommandHandlerFunctor
-{
-
-public:
- RequestCounterDirectoryCommandHandler(uint32_t familyId,
- uint32_t packetId,
- uint32_t version,
- ICounterDirectory& counterDirectory,
- ISendCounterPacket& sendCounterPacket,
- ISendTimelinePacket& sendTimelinePacket,
- ProfilingStateMachine& profilingStateMachine)
- : CommandHandlerFunctor(familyId, packetId, version)
- , m_CounterDirectory(counterDirectory)
- , m_SendCounterPacket(sendCounterPacket)
- , m_SendTimelinePacket(sendTimelinePacket)
- , m_StateMachine(profilingStateMachine)
- {}
-
- void operator()(const arm::pipe::Packet& packet) override;
-
-private:
- const ICounterDirectory& m_CounterDirectory;
- ISendCounterPacket& m_SendCounterPacket;
- ISendTimelinePacket& m_SendTimelinePacket;
- const ProfilingStateMachine& m_StateMachine;
-};
-
-} // namespace pipe
-
-} // namespace arm