Line data Source code
1 : /*
2 : * Copyright (c) Huawei Technologies Co., Ltd. 2024-2024. All rights reserved.
3 : * Description: ccu representation implementation file
4 : * Author: sunzhepeng
5 : * Create: 2024-06-17
6 : */
7 :
8 : #include "ccu_rep_v1.h"
9 :
10 : namespace hcomm {
11 : namespace CcuRep {
12 :
13 982 : CcuRepBase::CcuRepBase()
14 : {
15 982 : }
16 :
17 987 : CcuRepBase::~CcuRepBase()
18 : {
19 987 : }
20 :
21 4601 : CcuRepType CcuRepBase::Type() const
22 : {
23 4601 : return type;
24 : }
25 :
26 1023 : bool CcuRepBase::Translated() const
27 : {
28 1023 : return translated;
29 : }
30 :
31 549 : uint16_t CcuRepBase::StartInstrId() const
32 : {
33 549 : return instrId;
34 : }
35 1298 : uint16_t CcuRepBase::InstrCount()
36 : {
37 1298 : return instrCount;
38 : }
39 :
40 : }; // namespace CcuRep
41 : }; // namespace hcomm
|