aboutsummaryrefslogtreecommitdiff
path: root/profiling/common/src/CommandHandlerFunctor.cpp
blob: ea24cfb34e61ccf8dd807b056ed859f501b03b77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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