blob: dcdafde6be5abeec4461d7a95ab06478bfec9671 (
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
|
<!--<?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="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></book>-->
</body>
</document>
|