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() const14uint32_t CommandHandlerFunctor::GetFamilyId() const 15 { 16 return m_FamilyId; 17 } 18 GetPacketId() const19uint32_t CommandHandlerFunctor::GetPacketId() const 20 { 21 return m_PacketId; 22 } 23 GetVersion() const24uint32_t CommandHandlerFunctor::GetVersion() const 25 { 26 return m_Version; 27 } 28 29 } // namespace pipe 30 31 } // namespace arm 32