blob: 15054fa4c535eb654e9f57825e7bfc78ef86bf6e (
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
|
<?xml version="1.0"?>
<!--
file : examples/cxx/parser/polymorphism/supermen.xml
copyright : not copyrighted - public domain
-->
<supermen xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="supermen.xsd">
<person>
<name>John Doe</name>
</person>
<superman can-fly="false">
<name>James "007" Bond</name>
</superman>
<superman can-fly="true" wing-span="10" xsi:type="batman">
<name>Bruce Wayne</name>
</superman>
</supermen>
|