summaryrefslogtreecommitdiff
path: root/examples/cxx/tree/custom/taxonomy/people.xml
blob: 5f84855d944e09f672fcec72947c0995c9bc46c7 (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
<?xml version="1.0"?>

<!--

file      : examples/cxx/tree/custom/taxonomy/people.xml
author    : Boris Kolpackov <boris@codesynthesis.com>
copyright : not copyrighted - public domain

-->

<ppl:catalog xmlns:ppl="http://www.codesynthesis.com/people"
	     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	     xsi:schemaLocation="http://www.codesynthesis.com/people people.xsd">

  <person>
    <name>Joe Dirt</name>
  </person>

  <person xsi:type="ppl:superman" can-fly="false">
    <name>James "007" Bond</name>
  </person>

  <person xsi:type="ppl:batman" can-fly="true" wing-span="10">
    <name>Bruce Wayne</name>
  </person>

</ppl:catalog>