README 564 B

123456789101112131415161718192021
  1. processing
  2. Shows how to parse a specific XML vocabulary, extract the data, and store
  3. it back to XML.
  4. persistence
  5. Shows how to implement C++ classes that know how to persist themselves in
  6. XML.
  7. inheritance
  8. Shows how to implement XML persistence for C++ classes that use inheritance.
  9. roundtrip
  10. Shows how to "roundtrip" an XML document, that is, parse it and serialize
  11. it back to XML.
  12. hybrid
  13. Shows how to implement hybrid, partially in-memory, partially streaming
  14. parsing and serialization.
  15. performance
  16. Measures the performance of the parser.