diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/pugixml.cpp | 7 | ||||
-rw-r--r-- | src/pugixml.hpp | 13 |
2 files changed, 20 insertions, 0 deletions
diff --git a/src/pugixml.cpp b/src/pugixml.cpp index ba25058..b6a1dd8 100644 --- a/src/pugixml.cpp +++ b/src/pugixml.cpp @@ -2647,6 +2647,13 @@ namespace pugi node_output(buffered_writer, *this, indent, flags, depth);
}
+ void xml_node::print(std::ostream& stream, const char* indent, unsigned int flags, unsigned int depth)
+ {
+ xml_writer_stream writer(stream);
+
+ print(writer, indent, flags, depth);
+ }
+
int xml_node::offset_debug() const
{
xml_node_struct* r = root()._root;
diff --git a/src/pugixml.hpp b/src/pugixml.hpp index f808a77..c2ac8bc 100644 --- a/src/pugixml.hpp +++ b/src/pugixml.hpp @@ -1211,6 +1211,19 @@ namespace pugi */ void print(xml_writer& writer, const char* indent = "\t", unsigned int flags = format_default, unsigned int depth = 0); + #ifndef PUGIXML_NO_STL + /** + * Print subtree to stream + * + * \param os - output stream + * \param indent - indentation string + * \param flags - formatting flags + * \param depth - starting depth (used for indentation) + * \deprecated + */ + void print(std::ostream& os, const char* indent = "\t", unsigned int flags = format_default, unsigned int depth = 0); + #endif + /** * Get node offset in parsed file/string (in bytes) for debugging purposes * |