diff options
author | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2009-01-25 20:49:53 +0000 |
---|---|---|
committer | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2009-01-25 20:49:53 +0000 |
commit | 46da814b4287f34d668f38779947e6941837079b (patch) | |
tree | 066b6844a9744dc25e0ca4d287c74e4d8155400f /src/pugixml.hpp | |
parent | 600c3814e991c12c2526a670eb9968f4c866d5d8 (diff) |
Added xml_node::print for stream to make migration easier
git-svn-id: http://pugixml.googlecode.com/svn/trunk@112 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'src/pugixml.hpp')
-rw-r--r-- | src/pugixml.hpp | 13 |
1 files changed, 13 insertions, 0 deletions
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 * |