-
Notifications
You must be signed in to change notification settings - Fork 350
/
Copy pathGraphDefine.h
35 lines (29 loc) · 1.13 KB
/
GraphDefine.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/***************************
@Author: Chunel
@Contact: [email protected]
@File: GraphDefine.h
@Time: 2023/2/22 23:32
@Desc:
***************************/
#ifndef CGRAPH_GRAPHDEFINE_H
#define CGRAPH_GRAPHDEFINE_H
#include "../CBasic/CBasicInclude.h"
CGRAPH_NAMESPACE_BEGIN
static const char* CGRAPH_STR_PIPELINE = "pipeline";
static const char* CGRAPH_STR_NODE = "node";
static const char* CGRAPH_STR_CLUSTER = "cluster";
static const char* CGRAPH_STR_REGION = "region";
static const char* CGRAPH_STR_CONDITION = "condition";
static const char* CGRAPH_STR_MULTI_CONDITION = "multi_condition";
static const char* CGRAPH_STR_SOME = "some";
static const char* CGRAPH_STR_MUTABLE = "mutable";
static const char* CGRAPH_STR_FUNCTION = "function";
static const char* CGRAPH_STR_SINGLETON = "singleton";
static const char* CGRAPH_STR_DAEMON = "daemon";
static const char* CGRAPH_STR_ASPECT = "aspect";
static const char* CGRAPH_STR_EVENT = "event";
static const char* CGRAPH_STR_FENCE = "fence";
static const char* CGRAPH_STR_COORDINATOR = "coordinator";
static const char* CGRAPH_STR_STAGE = "stage";
CGRAPH_NAMESPACE_END
#endif //CGRAPH_GRAPHDEFINE_H