aboutsummaryrefslogtreecommitdiff
path: root/src/profiling/IProfilingConnection.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/profiling/IProfilingConnection.hpp')
-rw-r--r--src/profiling/IProfilingConnection.hpp36
1 files changed, 0 insertions, 36 deletions
diff --git a/src/profiling/IProfilingConnection.hpp b/src/profiling/IProfilingConnection.hpp
deleted file mode 100644
index 9a25854b7f..0000000000
--- a/src/profiling/IProfilingConnection.hpp
+++ /dev/null
@@ -1,36 +0,0 @@
-//
-// Copyright © 2017 Arm Ltd. All rights reserved.
-// SPDX-License-Identifier: MIT
-//
-
-#pragma once
-
-#include <client/include/ILocalPacketHandler.hpp>
-
-#include <common/include/Packet.hpp>
-
-#include <cstdint>
-
-namespace arm
-{
-
-namespace pipe
-{
-
-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 arm::pipe::Packet ReadPacket(uint32_t timeout) = 0;
-};
-
-} // namespace pipe
-
-} // namespace arm