Update of /cvsroot/cppunit/cppunit2/src/cpput
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10041/src/cpput
Modified Files:
assert.cpp exceptionguard.cpp registry.cpp testcase.cpp
Log Message:
- renamed include/cpput/assert.h to include/cpput/assertcommon.h. This avoid clash with include <assert.h> in doxygen documentation
- most Impl namespaces are now hidden from documentation using \cond and \endcond.
Index: assert.cpp
===================================================================
RCS file: /cvsroot/cppunit/cppunit2/src/cpput/assert.cpp,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** assert.cpp 11 Nov 2005 20:54:15 -0000 1.17
--- assert.cpp 13 Nov 2005 10:12:01 -0000 1.18
***************
*** 1,3 ****
! # include <cpput/assert.h>
# include <cpput/message.h>
# include <cpput/stringize.h>
--- 1,3 ----
! # include <cpput/assertcommon.h>
# include <cpput/message.h>
# include <cpput/stringize.h>
Index: registry.cpp
===================================================================
RCS file: /cvsroot/cppunit/cppunit2/src/cpput/registry.cpp,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** registry.cpp 8 Nov 2005 23:25:31 -0000 1.4
--- registry.cpp 13 Nov 2005 10:12:01 -0000 1.5
***************
*** 6,9 ****
--- 6,10 ----
namespace CppUT {
+ /// \cond implementation_detail
namespace Impl {
struct ThreadSafeSuiteFactory
***************
*** 28,31 ****
--- 29,33 ----
};
} // namespace Impl
+ /// \endcond
Index: testcase.cpp
===================================================================
RCS file: /cvsroot/cppunit/cppunit2/src/cpput/testcase.cpp,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** testcase.cpp 11 Nov 2005 20:54:15 -0000 1.14
--- testcase.cpp 13 Nov 2005 10:12:01 -0000 1.15
***************
*** 1,4 ****
#include <cpput/testcase.h>
! #include <cpput/assert.h>
#include <cpptl/functor.h>
#include <cpput/message.h>
--- 1,4 ----
#include <cpput/testcase.h>
! #include <cpput/assertcommon.h>
#include <cpptl/functor.h>
#include <cpput/message.h>
Index: exceptionguard.cpp
===================================================================
RCS file: /cvsroot/cppunit/cppunit2/src/cpput/exceptionguard.cpp,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** exceptionguard.cpp 11 Nov 2005 20:54:15 -0000 1.9
--- exceptionguard.cpp 13 Nov 2005 10:12:01 -0000 1.10
***************
*** 39,42 ****
--- 39,43 ----
+ /// \cond implementation_detail
namespace Impl {
***************
*** 97,100 ****
--- 98,102 ----
} // namespace Impl
+ /// \endcond
|