aboutsummaryrefslogtreecommitdiff
path: root/profiling/common/src/CommandHandlerFunctor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'profiling/common/src/CommandHandlerFunctor.cpp')
-rw-r--r--profiling/common/src/CommandHandlerFunctor.cpp31
1 files changed, 31 insertions, 0 deletions
diff --git a/profiling/common/src/CommandHandlerFunctor.cpp b/profiling/common/src/CommandHandlerFunctor.cpp
new file mode 100644
index 0000000000..ea24cfb34e
--- /dev/null
+++ b/profiling/common/src/CommandHandlerFunctor.cpp
@@ -0,0 +1,31 @@
+//
+// Copyright © 2017 Arm Ltd and Contributors. All rights reserved.
+// SPDX-License-Identifier: MIT
+//
+
+#include "CommandHandlerFunctor.hpp"
+
+namespace arm
+{
+
+namespace pipe
+{
+
+uint32_t CommandHandlerFunctor::GetFamilyId() const
+{
+ return m_FamilyId;
+}
+
+uint32_t CommandHandlerFunctor::GetPacketId() const
+{
+ return m_PacketId;
+}
+
+uint32_t CommandHandlerFunctor::GetVersion() const
+{
+ return m_Version;
+}
+
+} // namespace pipe
+
+} // namespace arm