From 4cd8534a1e9c1c7abfbb1f7f55e511db7e985f76 Mon Sep 17 00:00:00 2001 From: Lee Thomason Date: Mon, 4 Jun 2012 17:02:37 -0700 Subject: [PATCH] actually add comments --- tinyxml2.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tinyxml2.h b/tinyxml2.h index 93b3802..f430f2b 100644 --- a/tinyxml2.h +++ b/tinyxml2.h @@ -1327,7 +1327,9 @@ class XMLPrinter : public XMLVisitor public: /** Construct the printer. If the FILE* is specified, this will print to the FILE. Else it will print - to memory, and the result is available in CStr() + to memory, and the result is available in CStr(). + If 'compact' is set to true, then output is created + with only required whitespace and newlines. */ XMLPrinter( FILE* file=0, bool compact = false ); ~XMLPrinter() {}