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 : #include "ccu_kernel.h"
10 : #include "ccu_interface_assist_v1.h"
11 :
12 : #include "string_util.h"
13 : #include "ccu_api_exception.h"
14 :
15 : namespace hcomm {
16 : namespace CcuRep {
17 :
18 2 : FuncBlock::FuncBlock(CcuRepContext* context, std::string label, uint16_t callLayer)
19 2 : : context(context),
20 2 : label(label),
21 2 : callLayer(callLayer)
22 2 : {}
23 :
24 2 : FuncBlock::~FuncBlock() {}
25 :
26 : }; // namespace CcuRep
27 : }; // namespace hcomm
|