Revision 111, 393 bytes
(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 | |
---|
5 | file : examples/cxx/parser/hello/hello.xml |
---|
6 | author : Boris Kolpackov <boris@codesynthesis.com> |
---|
7 | copyright : not copyrighted - public domain |
---|
8 | |
---|
9 | --> |
---|
10 | |
---|
11 | <hello xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
---|
12 | xsi:noNamespaceSchemaLocation="hello.xsd"> |
---|
13 | |
---|
14 | <greeting>Hello</greeting> |
---|
15 | |
---|
16 | <name>sun</name> |
---|
17 | <name>moon</name> |
---|
18 | <name>world</name> |
---|
19 | |
---|
20 | </hello> |
---|