aboutsummaryrefslogtreecommitdiff
path: root/tests/xml/roundtrip/driver.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2013-03-15 08:22:58 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2013-03-15 08:22:58 +0200
commit927b97baaaf69e318ff7a0ce76d096375ec09da2 (patch)
tree074d633c92c99ec541e7f0631c2fd2a6c5378689 /tests/xml/roundtrip/driver.cxx
parent6664a24b003f3959e2efe2893628f725a5f6746f (diff)
Add support for returning XML attributes as map
Diffstat (limited to 'tests/xml/roundtrip/driver.cxx')
-rw-r--r--tests/xml/roundtrip/driver.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/xml/roundtrip/driver.cxx b/tests/xml/roundtrip/driver.cxx
index ec8cebe..b0b6497 100644
--- a/tests/xml/roundtrip/driver.cxx
+++ b/tests/xml/roundtrip/driver.cxx
@@ -33,7 +33,9 @@ main (int argc, char* argv[])
parser p (ifs,
argv[1],
- parser::receive_default | parser::receive_namespace_decls);
+ parser::receive_default |
+ parser::receive_attributes_event |
+ parser::receive_namespace_decls);
serializer s (cout, "out", 0);