C++ class for reading and writing XML structures. No need for a C++ code parser or special pre compiler. Specify a schema entirly in native C++. The schema is verified when XML is read and exceptions are thrown when the XML to be parse is invalid.

22 lines
570 B

16 years ago
<address>
<name>
<first>Marc</first>
<middle>Roman</middle>
<last>Wäckerlin</last>
</name>
<location>
<line>SwissSign AG</line>
<line>Pfingstweidstrasse 60b</line>
<line>8005 Zürich</line>
</location>
<country>Schweiz</country>
<email>marc@waeckerlin.org</email>
<email>marc.waeckerlin@swisssign.com</email>
<url>http://dev.swisssign.com/trac/libxml-cxx</url>
<url>http://marc.wäckerlin.ch</url>
<url>http://marc.waeckerlin.org</url>
<url>http://dev.swisssign.com</url>
<url>http://swissign.com</url>
<url>http://swissign.ch</url>
</address>