24 #ifndef _XMLWRITER_HPP_
25 #define _XMLWRITER_HPP_
30 #include "boost/shared_ptr.hpp"
31 #include "boost/iostreams/positioning.hpp"
32 #include "boost/iostreams/filter/counter.hpp"
57 StyleFlag_AttributesOnMultipleLines = 0x04
64 virtual void update(
const std::string& output) = 0;
76 : initialStyle(0), indentationStep(2), outputObserver(0)
84 void add(
const std::string& name,
const double&
value);
85 void add(
const std::string& name,
const int& value);
88 inline void add(
const std::string& name,
const T& value)
90 push_back(make_pair(name, boost::lexical_cast<std::string>(value)));
95 XMLWriter(std::ostream& os,
const Config& config = Config());
99 void pushStyle(
unsigned int flags);
105 void processingInstruction(
const std::string& name,
const std::string& data);
111 void startElement(
const std::string& name,
112 const Attributes& attributes = Attributes(),
113 EmptyElementTag emptyElementTag = NotEmptyElement);
121 void characters(
const std::string& text,
bool autoEscape =
true);
134 boost::shared_ptr<Impl>
impl_;
161 template<
typename Ch>
166 : boost::iostreams::dual_use,
167 boost::iostreams::filter_tag,
168 boost::iostreams::multichar_tag,
169 boost::iostreams::optimally_buffered_tag
177 template<
typename Source>
187 template<
typename Sink>
207 #endif // _XMLWRITER_HPP_