Skip to content

Commit c36cf99

Browse files
committed
Merge branches 'dev/split/descAttribute', 'dev/split/descNode', 'dev/split/descComputation' and 'dev/split/descModule' into dev/split/coreDescModule
5 parents 35914bd + d5c151c + 82e6f65 + 0df531c + 631fd42 commit c36cf99

File tree

4 files changed

+475
-411
lines changed

4 files changed

+475
-411
lines changed

meshroom/core/desc/__init__.py

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
from .attribute import (
2+
Attribute,
3+
BoolParam,
4+
ChoiceParam,
5+
ColorParam,
6+
File,
7+
FloatParam,
8+
GroupAttribute,
9+
IntParam,
10+
ListAttribute,
11+
PushButtonParam,
12+
StringParam,
13+
)
14+
from .computation import (
15+
DynamicNodeSize,
16+
Level,
17+
MultiDynamicNodeSize,
18+
Parallelization,
19+
Range,
20+
StaticNodeSize,
21+
)
22+
from .node import (
23+
AVCommandLineNode,
24+
CommandLineNode,
25+
InitNode,
26+
InputNode,
27+
Node,
28+
)
29+
30+
__all__ = [
31+
# attribute
32+
"Attribute",
33+
"BoolParam",
34+
"ChoiceParam",
35+
"ColorParam",
36+
"File",
37+
"FloatParam",
38+
"GroupAttribute",
39+
"IntParam",
40+
"ListAttribute",
41+
"PushButtonParam",
42+
"StringParam",
43+
# computation
44+
"DynamicNodeSize",
45+
"Level",
46+
"MultiDynamicNodeSize",
47+
"Parallelization",
48+
"Range",
49+
"StaticNodeSize",
50+
# node
51+
"AVCommandLineNode",
52+
"CommandLineNode",
53+
"InitNode",
54+
"InputNode",
55+
"Node",
56+
]

0 commit comments

Comments
 (0)