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 1510 : CcuRepBase::CcuRepBase()
14 : {
15 1510 : }
16 :
17 1515 : CcuRepBase::~CcuRepBase()
18 : {
19 1515 : }
20 :
21 8625 : CcuRepType CcuRepBase::Type() const
22 : {
23 8625 : return type;
24 : }
25 :
26 1714 : bool CcuRepBase::Translated() const
27 : {
28 1714 : return translated;
29 : }
30 :
31 930 : uint16_t CcuRepBase::StartInstrId() const
32 : {
33 930 : return instrId;
34 : }
35 2264 : uint16_t CcuRepBase::InstrCount()
36 : {
37 2264 : return instrCount;
38 : }
39 :
40 : }; // namespace CcuRep
41 : }; // namespace hcomm
|