summaryrefslogtreecommitdiff
path: root/testdata/xmlparser/generic.oxm
blob: 2dbd72b5abc4052518a3d68818186d7b6a6383f0 (plain)
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
<!--<?xml version="1.0" standalone="yes"?>-->
<document a:bc="b">
	<head>
		<typesystem name="color">
			<types>
				<struct name="rgb">
					<field name="r" type="double"/>
					<field name="g" type="double"/>
					<field name="b" type="double"/>
				</struct>
				<struct name="rgb">
				</struct>
				<struct name="rgba" parent="rgb">
					<field name="a" type="double" default="0xf3"/>
				</struct>
			</types>
		</typesystem>
		<typesystem name="color2">
			<types>
				<struct name="rgba" parent="rgb">
					<field name="a" type="bla" default="0xf3"/>
				</struct>
			</types>
		</typesystem>
	</head>
	<body xmlAttr="blub">
		<!--<book>Dies ist ein Test&gt;</book>-->
	</body>
</document>