2023-02-22 10:23:05 +08:00
|
|
|
|
2023-02-22 21:49:31 +08:00
|
|
|
class Export_Boolean(object):
|
|
|
|
TRUE = 1
|
|
|
|
FALSE = 0
|
|
|
|
|
2023-02-23 20:50:58 +08:00
|
|
|
class Export_Behavior_Type(object):
|
|
|
|
FUNCTION = 0
|
|
|
|
GRAPH = 1
|
|
|
|
SCRIPT = 4
|
|
|
|
|
2023-02-22 21:49:31 +08:00
|
|
|
class Export_bLink_InputOutputType(object):
|
2023-02-22 10:23:05 +08:00
|
|
|
INPUT = 0
|
|
|
|
OUTPUT = 1
|
|
|
|
|
2023-02-22 21:49:31 +08:00
|
|
|
class Export_pLink_InputOutputType(object):
|
2023-02-22 10:23:05 +08:00
|
|
|
PIN = 0
|
|
|
|
POUT = 1
|
|
|
|
PLOCAL = 2
|
|
|
|
PTARGET = 3
|
|
|
|
PATTR = 4
|