From a38ed141c1f33ecdad99b322acb1ae07b30a5da2 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Fri, 18 May 2012 01:31:01 -0600 Subject: Switched to Boost.PropertyTree for XML generation --- src/annotate.h | 29 +---------------------------- 1 file changed, 1 insertion(+), 28 deletions(-) (limited to 'src/annotate.h') diff --git a/src/annotate.h b/src/annotate.h index 37ee0685..1e62e2fa 100644 --- a/src/annotate.h +++ b/src/annotate.h @@ -124,34 +124,7 @@ private: #endif // HAVE_BOOST_SERIALIZATION }; -inline void to_xml(std::ostream& out, const annotation_t& details) -{ - push_xml x(out, "annotation"); - - if (details.price) - { - push_xml y(out, "price"); - to_xml(out, *details.price); - } - - if (details.date) - { - push_xml y(out, "date"); - to_xml(out, *details.date, false); - } - - if (details.tag) - { - push_xml y(out, "tag"); - out << y.guard(*details.tag); - } - - if (details.value_expr) - { - push_xml y(out, "value-expr"); - out << y.guard(details.value_expr->text()); - } -} +void put_annotation(property_tree::ptree& pt, const annotation_t& details); struct keep_details_t { -- cgit v1.2.3