aboutsummaryrefslogtreecommitdiff
path: root/examples/cxx/hybrid/README
blob: ee55a9042e294886755125825559379b91f7bde5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
This directory contains a number of examples that show how to
use the Embedded C++/Hybrid mapping. The following list gives
an overview of each example. See the README files in example
directories for more information on each example.

hello
  A simple "Hello, world!" example that shows how to parse XML
  documents.

library
  Shows how to handle more complex data structures, modify the
  object model, and serialize the modified object model back to
  XML.
  
minimal
  Shows how to perform parsing and serialization as well as use the
  object model when the mapping is configured without support for
  STL, iostream, or C++ exceptions.

multiroot
  Shows how to parse XML vocabularies with multiple root elements.

wildcard
  Shows how to parse, store in the object model, and serialize XML
  data matched by XML Schema wildcards (any and anyAttribute).

filter
  Shows how to filter the XML data during parsing and object model
  during serialization.

streaming
  Shows how to perform partially event-driven, partially in-memory
  XML processing.

compositors
  Shows how to create, access, and modify object models with complex
  nested choice and sequence compositors.