root/tests/hello.xsd @ 125

Revision 111, 0.5 kB (checked in by mido, 16 years ago)

pridana knihovna XSD (a jeji chlebodarkyne XERCES), v ramci Win32 zprovoznen priklad tests/test_xsd_hello.cxx

Line 
1<?xml version="1.0"?>
2
3<!--
4
5file      : examples/cxx/parser/hello/hello.xsd
6author    : Boris Kolpackov <boris@codesynthesis.com>
7copyright : not copyrighted - public domain
8
9-->
10
11<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
12
13  <xsd:complexType name="hello">
14    <xsd:sequence>
15      <xsd:element name="greeting" type="xsd:string"/>
16      <xsd:element name="name" type="xsd:string" maxOccurs="unbounded"/>
17    </xsd:sequence>
18  </xsd:complexType>
19
20  <xsd:element name="hello" type="hello"/>
21
22</xsd:schema>
Note: See TracBrowser for help on using the browser.