xref: /aosp_15_r20/external/armnn/profiling/common/src/CommandHandlerFunctor.cpp (revision 89c4ff92f2867872bb9e2354d150bf0c8c502810)
1 //
2 // Copyright © 2017 Arm Ltd and Contributors. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
6 #include "CommandHandlerFunctor.hpp"
7 
8 namespace arm
9 {
10 
11 namespace pipe
12 {
13 
GetFamilyId() const14 uint32_t CommandHandlerFunctor::GetFamilyId() const
15 {
16     return m_FamilyId;
17 }
18 
GetPacketId() const19 uint32_t CommandHandlerFunctor::GetPacketId() const
20 {
21     return m_PacketId;
22 }
23 
GetVersion() const24 uint32_t CommandHandlerFunctor::GetVersion() const
25 {
26     return m_Version;
27 }
28 
29 } // namespace pipe
30 
31 } // namespace arm
32