Update of /cvsroot/mockpp/mockpp/mockpp
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4137/mockpp
Modified Files:
mockpp.h
Log Message:
fix docs
Index: mockpp.h
===================================================================
RCS file: /cvsroot/mockpp/mockpp/mockpp/mockpp.h,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -d -r1.71 -r1.72
--- mockpp.h 30 Dec 2005 12:43:17 -0000 1.71
+++ mockpp.h 3 Jan 2006 15:12:34 -0000 1.72
@@ -27,6 +27,9 @@
**/
+/** @defgroup grp_config Configuration elements.
+ */
+
/** @defgroup grp_helper General helper classes
*/
@@ -75,7 +78,9 @@
- \ref grp_constraint
- \ref grp_constraint_abbrev
- \ref grp_helper
+ - \ref grp_framework
- \ref grp_production
+ - \ref grp_config
*/
@@ -486,6 +491,7 @@
* Actually it is invoked instead of throwing exceptions.
* @param fwd pointer to function.
* @return previous pointer
+ * @ingroup grp_config
*/
AssertionFailedForwarder_t
setAssertionFailedForwarder(AssertionFailedForwarder_t fwd);
@@ -508,12 +514,35 @@
# define MOCKPP_MEMBER_RESTRICTOR_PROTECTED protected
#endif
+#ifdef DOXYGEN
+#define MOCKPP_UNICODE
+#define CXXTEST_USE_MINI_STL
+#define MOCKPP_USE_MINI_STL
+#endif
+
+/** @def MOCKPP_UNICODE
+ * @ingroup grp_config
+ * Defined if \c Unicode strings are used.
+ */
+
+/** @def CXXTEST_USE_MINI_STL
+ * @ingroup grp_config
+ * Defined if CxxTest uses the alternative STL implementation below
+ * 3party/ministl instead of the regular STL.
+ */
+
+/** @def MOCKPP_USE_MINI_STL
+ * @ingroup grp_config
+ * Defined if mockpp uses the alternative STL implementation below
+ * 3party/ministl instead of the regular STL.
+ */
+
/** @def MOCKPP_MEMBER_RESTRICTOR_PRIVATE
- * Make member public for Borland BCB5.
+ * Makes member public for Borland BCB5 otherwise private.
*/
/** @def MOCKPP_MEMBER_RESTRICTOR_PROTECTED
- * Make member public for Borland BCB5.
+ * Makes member public for Borland BCB5 otherwise protected.
*/
#endif // MOCKPP_H
|