-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsample.xml
30 lines (30 loc) · 1.15 KB
/
sample.xml
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
<dataflow projectname="Sum a b">
<imports>
<import module="basicmath" />
<import module="io_module" />
</imports>
<entry-points>
<entry-point id="7"/>
</entry-points>
<schema>
<!-- Output IDs and Block IDs are unique across the project, however, blocks and outputs
can share the same IDs -->
<constructor id="1" module="basicmath" type="Integer" pos_x="0" pos_y="0">
<output id="2" />
<data>123</data>
</constructor>
<constructor id="3" module="basicmath" type="Integer" pos_x="0" pos_y="75">
<output id="4" />
<data>234</data>
</constructor>
<operation id="5" module="basicmath" name="AddIntegers" pos_x="200" pos_y="25">
<!-- index defines the order of inputs in the operation -->
<input index="0" output_id="2" />
<input index="1" output_id="4" />
<output id="6" />
</operation>
<operation id="7" module="io_module" name="PrintInteger" pos_x="400" pos_y="25">
<input index="0" output_id="6" />
</operation>
</schema>
</dataflow>