diff options
Diffstat (limited to 'src/pugixml.hpp')
-rw-r--r-- | src/pugixml.hpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/pugixml.hpp b/src/pugixml.hpp index 3e6aa3d..5b9b5c7 100644 --- a/src/pugixml.hpp +++ b/src/pugixml.hpp @@ -1210,6 +1210,16 @@ namespace pugi * \param depth - starting depth (used for indentation) */ void print(xml_writer& writer, const char* indent = "\t", unsigned int flags = format_default, unsigned int depth = 0); + + /** + * Get node offset in parsed file/string (in bytes) for debugging purposes + * + * \return offset in bytes to start of node data, or -1 in case of error + * \note This will return -1 if node information changed to the extent that it's no longer possible to calculate offset, for example + * if element node name has significantly changed; this is guaranteed to return correct offset only for nodes that have not changed + * since parsing. + */ + int offset_debug() const; }; #ifdef __BORLANDC__ |