Update of /cvsroot/mockpp/mockpp
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6520
Modified Files:
ChangeLog configure.in mockpp.doxygen.in
Log Message:
started dbc support
Index: mockpp.doxygen.in
===================================================================
RCS file: /cvsroot/mockpp/mockpp/mockpp.doxygen.in,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- mockpp.doxygen.in 22 Mar 2005 22:02:55 -0000 1.10
+++ mockpp.doxygen.in 24 Apr 2005 11:35:16 -0000 1.11
@@ -16,7 +16,7 @@
# The PROJECT_NAME tag is a single word (or a sequence of words surrounded
# by quotes) that should identify the project.
-
+DBC_PRE(a,b) =\pre b \code a \endcode"
PROJECT_NAME = mockpp
# The PROJECT_NUMBER tag can be used to enter a project or revision number.
@@ -1020,11 +1020,20 @@
# undefined via #undef or recursively expanded use the := operator
# instead of the = operator.
-PREDEFINED = HAVE_ICONV_H \
- HAVE_LIMITS \
+PREDEFINED = \
+ DOXYGEN \
+ HAVE_ICONV_H \
+ HAVE_LIMITS \
HAVE_CPPUNIT \
+ MOCKPP_BOUNDARY_DELTA \
DOXYGEN_SHOULD_SKIP_THIS \
- MOCKPP_BOUNDARY_DELTA
+ DOXYGEN_SHOULD_SKIP_THIS \
+ "MOCKPP_PRE(a) = /*! \pre a */" \
+ "MOCKPP_PRE_MSG(a,b) = /*! \pre a \code b \endcode */" \
+ "MOCKPP_POST(a) = /*! \post a */" \
+ "MOCKPP_POST_MSG(a,b) = /*! \post a \code b \endcode */" \
+ "MOCKPP_INVARIANT(a) = /*! \invariant a */" \
+ "MOCKPP_INVARIANT_MSG(a,b) = /*! \invariant a \code b \endcode */"
# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then
# this tag can be used to specify a list of macro names that should be expanded.
Index: ChangeLog
===================================================================
RCS file: /cvsroot/mockpp/mockpp/ChangeLog,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -d -r1.46 -r1.47
--- ChangeLog 21 Apr 2005 20:35:56 -0000 1.46
+++ ChangeLog 24 Apr 2005 11:35:16 -0000 1.47
@@ -8,6 +8,7 @@
- included missing project file for bcb5
- fix for msvc7.1
- cleanup ThrowableList
+ - basic support for "Desgin By Contract"
2005-04-10 1.7.1:
Index: configure.in
===================================================================
RCS file: /cvsroot/mockpp/mockpp/configure.in,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -d -r1.74 -r1.75
--- configure.in 7 Apr 2005 20:40:16 -0000 1.74
+++ configure.in 24 Apr 2005 11:35:16 -0000 1.75
@@ -17,11 +17,11 @@
#
MOCKPP_MAJOR_VERSION=1
MOCKPP_MINOR_VERSION=7
-MOCKPP_PATCH_VERSION=1
+MOCKPP_PATCH_VERSION=2
-MOCKPP_MICRO_VERSION=26
-MOCKPP_INTERFACE_AGE=1
-MOCKPP_BINARY_AGE=4
+MOCKPP_MICRO_VERSION=27
+MOCKPP_INTERFACE_AGE=2
+MOCKPP_BINARY_AGE=5
MOCKPP_VERSION=$MOCKPP_MAJOR_VERSION.$MOCKPP_MINOR_VERSION.$MOCKPP_PATCH_VERSION
|