From d11cd169e65913e395892920c697794b328205c7 Mon Sep 17 00:00:00 2001 From: Lee Thomason Date: Thu, 12 Apr 2012 08:35:36 -0700 Subject: [PATCH] minor whitespace cleanup --- tinyxml2.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tinyxml2.h b/tinyxml2.h index 769882b..76e47ac 100644 --- a/tinyxml2.h +++ b/tinyxml2.h @@ -1008,26 +1008,30 @@ public: an errorID. */ int Parse( const char* xml ); + /** Load an XML file from disk. Returns XML_NO_ERROR (0) on success, or an errorID. - */ + */ int LoadFile( const char* filename ); + /** Load an XML file from disk. You are responsible for providing and closing the FILE*. Returns XML_NO_ERROR (0) on success, or an errorID. - */ + */ int LoadFile( FILE* ); + /** Save the XML file to disk. Returns XML_NO_ERROR (0) on success, or an errorID. */ int SaveFile( const char* filename ); + /** Save the XML file to disk. You are responsible for providing and closing the FILE*.