summaryrefslogtreecommitdiff
path: root/xsd-examples/cxx/parser/polymorphism/supermen.xml
blob: f5691613542318d7d2f4654e8b924312da8d6617 (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      : 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>