-
Notifications
You must be signed in to change notification settings - Fork 338
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ad559f6
commit 39d74ef
Showing
5 changed files
with
38 additions
and
12 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
/*************************** | ||
@Author: Chunel | ||
@Contact: [email protected] | ||
@File: CStruct.h | ||
@Time: 2023/7/16 11:36 | ||
@Desc: | ||
***************************/ | ||
|
||
#ifndef CGRAPH_CSTRUCT_H | ||
#define CGRAPH_CSTRUCT_H | ||
|
||
#include "CBasicDefine.h" | ||
#include "CStatus.h" | ||
#include "CFuncType.h" | ||
|
||
CGRAPH_NAMESPACE_BEGIN | ||
|
||
/** | ||
* 所有框架内部结构体定义的基类 | ||
* 仅针对类似 bean 数据类型的定义 | ||
*/ | ||
class CStruct { | ||
/** | ||
* 初始化所有字段的值信息 | ||
* @return | ||
*/ | ||
public: | ||
virtual CStatus setup() { | ||
CGRAPH_EMPTY_FUNCTION | ||
} | ||
}; | ||
|
||
CGRAPH_NAMESPACE_END | ||
|
||
#endif //CGRAPH_CSTRUCT_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters