From: <vac...@us...> - 2008-11-26 18:23:48
|
Revision: 103 http://xmlwrapp.svn.sourceforge.net/xmlwrapp/?rev=103&view=rev Author: vaclavslavik Date: 2008-11-26 18:23:44 +0000 (Wed, 26 Nov 2008) Log Message: ----------- fixed some typos in comments Modified Paths: -------------- trunk/include/xmlwrapp/init.h trunk/include/xsltwrapp/init.h Modified: trunk/include/xmlwrapp/init.h =================================================================== --- trunk/include/xmlwrapp/init.h 2008-11-26 14:26:37 UTC (rev 102) +++ trunk/include/xmlwrapp/init.h 2008-11-26 18:23:44 UTC (rev 103) @@ -40,11 +40,11 @@ namespace xml { /** - * The xml::init class is used to initilize the XML parser. For thread + * The xml::init class is used to initialize the XML parser. For thread * safety it should be instantiated one time in the main thread before any - * other threads use xmlwrapp. Non-threaded programs should instantiante a + * other threads use xmlwrapp. Non-threaded programs should instantiate a * xml::init class before using xmlwrapp as well, at least for - * consistanticy. + * consistency. * * If you want to use and of the xml::init member functions, do so before * you start any threads or use any other part of xmlwrapp. The member Modified: trunk/include/xsltwrapp/init.h =================================================================== --- trunk/include/xsltwrapp/init.h 2008-11-26 14:26:37 UTC (rev 102) +++ trunk/include/xsltwrapp/init.h 2008-11-26 18:23:44 UTC (rev 103) @@ -43,20 +43,20 @@ namespace xslt { /** - * The xslt::init class is used to initilize the XSLT engine. For thread + * The xslt::init class is used to initialize the XSLT engine. For thread * safety it should be instantiated one time in the main thread before any - * other threads use xsltwrapp. Non-threaded programs should instantiante a + * other threads use xsltwrapp. Non-threaded programs should instantiate a * xslt::init class before using xsltwrapp as well, at least for - * consistanticy. + * consistency. * * If you want to use any of the xslt::init member functions, do so before * you start any threads or use any other part of xsltwrapp. The member * functions may alter global and/or static variables. In other words, this * class is not thread safe. * - * Since this class is derived from the xml::init it is not neccessary to + * Since this class is derived from the xml::init it is not necessary to * use both classes. If you are going to be using xsltwrapp, you should only - * use this class to initilize both xmlwrapp and xsltwrapp. + * use this class to initialize both xmlwrapp and xsltwrapp. **/ class init : public xml::init { public: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <vac...@us...> - 2008-12-12 23:58:47
|
Revision: 106 http://xmlwrapp.svn.sourceforge.net/xmlwrapp/?rev=106&view=rev Author: vaclavslavik Date: 2008-12-12 23:58:44 +0000 (Fri, 12 Dec 2008) Log Message: ----------- make init classes' dtors non-virtual, there's no reason for them to be virtual Modified Paths: -------------- trunk/include/xmlwrapp/init.h trunk/include/xsltwrapp/init.h Modified: trunk/include/xmlwrapp/init.h =================================================================== --- trunk/include/xmlwrapp/init.h 2008-12-01 19:40:58 UTC (rev 105) +++ trunk/include/xmlwrapp/init.h 2008-12-12 23:58:44 UTC (rev 106) @@ -68,10 +68,13 @@ * Clean up the XML parser. Don't let the xml::init object go out of * scope before you are done using the xmlwrapp library! * + * @note The destructor is intentionally not virtual, this class and + * derived classes are meant to be used in RAII manner. + * * @author Peter Jones **/ //#################################################################### - virtual ~init (void); + ~init (void); //#################################################################### /** Modified: trunk/include/xsltwrapp/init.h =================================================================== --- trunk/include/xsltwrapp/init.h 2008-12-01 19:40:58 UTC (rev 105) +++ trunk/include/xsltwrapp/init.h 2008-12-12 23:58:44 UTC (rev 106) @@ -76,10 +76,13 @@ * Clean up the XSLT engine. Don't let the xslt::init object go out of * scope before you are done using the xsltwrapp or xmlwrapp libraries! * + * @note The destructor is intentionally not virtual, this class and + * derived classes are meant to be used in RAII manner. + * * @author Peter Jones **/ //#################################################################### - virtual ~init (void); + ~init (void); //#################################################################### /** This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <vac...@us...> - 2008-12-14 14:27:50
|
Revision: 110 http://xmlwrapp.svn.sourceforge.net/xmlwrapp/?rev=110&view=rev Author: vaclavslavik Date: 2008-12-14 14:27:46 +0000 (Sun, 14 Dec 2008) Log Message: ----------- added Doxygen docs for xmlwrapp namespaces Modified Paths: -------------- trunk/include/xmlwrapp/init.h trunk/include/xsltwrapp/init.h Modified: trunk/include/xmlwrapp/init.h =================================================================== --- trunk/include/xmlwrapp/init.h 2008-12-13 22:28:53 UTC (rev 109) +++ trunk/include/xmlwrapp/init.h 2008-12-14 14:27:46 UTC (rev 110) @@ -37,6 +37,7 @@ #ifndef _xmlwrapp_init_h_ #define _xmlwrapp_init_h_ +/// XML library namespace namespace xml { /** Modified: trunk/include/xsltwrapp/init.h =================================================================== --- trunk/include/xsltwrapp/init.h 2008-12-13 22:28:53 UTC (rev 109) +++ trunk/include/xsltwrapp/init.h 2008-12-14 14:27:46 UTC (rev 110) @@ -40,6 +40,7 @@ // xmlwrapp includes #include "xmlwrapp/init.h" +/// XSLT library namespace namespace xslt { /** This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |