forked from COVESA/ifex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimple_overview.tpl
59 lines (58 loc) · 1.75 KB
/
simple_overview.tpl
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
-----------------------------------------
Header
-----------------------------------------
{% for s in item.children %}
Servicename: {{ s.name }}
-> {{ s.description }}
{% for n in s.namespaces %}
Namespace: {{ n.name }}
-> {{ n.description }}
{% for x in n.structs %}
Struct: {{ x.name }}
-> {{ x.description }}
{% for x in x.members %}
member: {{ x.name }} (of type {{x.type}})
{% endfor %}
{% endfor %}
{% for x in n.typedefs %}
Typedef: {{ x.name }}
-> {{ x.description }}
-> Datatype: {{ x.datatype }}
-> Min: {{ x.min }}
-> Max: {{ x.max }}
{% endfor %}
{% for x in n.enums %}
Enum: {{ x.name }}
-> {{ x.description }}
{% for x in x.options %}
Options name: {{ x.name }} (of value {{x.value}})
{% endfor %}
{% endfor %}
{% for x in n.methods %}
Method: {{ x.name }}
-> {{ x.description }}
{% for x in x.in_arguments %}
in: {{ x.name }} (of type {{x.type}})
{% endfor %}
{% for x in x.out_arguments %}
out: {{ x.name }} (of type {{x.type}})
{% endfor %}
{% endfor %}
{% for x in n.events %}
Event: {{ x.name }}
-> {{ x.description }}
{% for x in x.in_arguments %}
in: {{ x.name }} (of type {{x.type}})
{% endfor %}
{% endfor %}
{% for x in n.properties %}
Property: {{ x.name }}
-> {{ x.description }}
-> Type: {{ x.type }}
-> Datatype: {{ x.datatype }}
{% endfor %}
{% endfor %}
{% endfor %}
-----------------------------------------
Footer
-----------------------------------------