* 描述函数类型 */
| 28 | * 描述函数类型 |
| 29 | */ |
| 30 | enum class CFunctionType { |
| 31 | INIT = 1, /** 初始化函数 */ |
| 32 | RUN = 2, /** 执行函数 */ |
| 33 | DESTROY = 3 /** 释放函数 */ |
| 34 | }; |
| 35 | |
| 36 | /** 开启函数流程 */ |
| 37 | #define CGRAPH_FUNCTION_BEGIN \ |
nothing calls this directly
no outgoing calls
no test coverage detected