summaryrefslogtreecommitdiff
path: root/testdata/xmlparser/generic.oxm
blob: 23b8d663a71296eea66ce660ae9e731d3a9d9311 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!--<?xml version="1.0" standalone="yes"?>-->
<typesystem name="color">
	<types>
		<struct name="color">
			<field name="r" type="int"/>
			<field name="g" type="int"/>
			<field name="b" type="int"/>
		</struct>
		<struct name="structWithColor">
			<field name="color" type="color" default="black" />
		</struct>
	</types>
	<constants>
		<constant name="zero" value="42" type="string" />
		<constant name="black" value="[0, zero, 0]" type="color" />
		<constant name="err" value="0" type="int" />
	</constants>
</typesystem>