aboutsummaryrefslogtreecommitdiff
path: root/examples/README
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2014-05-14 22:08:23 -0700
committerBoris Kolpackov <boris@codesynthesis.com>2014-05-14 22:08:23 -0700
commitda03de1abb331a47657a24ce4564f7d76d4787ba (patch)
tree596d8880054e2ad2ffa48ef1562dee87235ad43d /examples/README
parent4f5802f70cef2d5c049ab5001c37022a8ba71eb5 (diff)
Write README files for examples
Diffstat (limited to 'examples/README')
-rw-r--r--examples/README21
1 files changed, 21 insertions, 0 deletions
diff --git a/examples/README b/examples/README
new file mode 100644
index 0000000..1a55867
--- /dev/null
+++ b/examples/README
@@ -0,0 +1,21 @@
+processing
+ Shows how to parse a specific XML vocabulary, extract the data, and store
+ it back to XML.
+
+persistence
+ Shows how to implement C++ classes that know how to persist themselves in
+ XML.
+
+inheritance
+ Shows how to implement XML persistence for C++ classes that use inheritance.
+
+roundtrip
+ Shows how to "roundtrip" an XML document, that is, parse it and serialize
+ it back to XML.
+
+hybrid
+ Shows how to implement hybrid, partially in-memory, partially streaming
+ parsing and serialization.
+
+performance
+ Measures the performance of the parser.