Update of /cvsroot/cppunit/cppunit2/include/cpput
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv307/include/cpput
Modified Files:
config.h
Log Message:
* added preprocessor macro to indicate if fixture suite name should be deduced through RTTI or macro expansion: CPPUT_USE_RTTI_TO_NAME_SUITE
* added missing include of cpptl config.
Index: config.h
===================================================================
RCS file: /cvsroot/cppunit/cppunit2/include/cpput/config.h,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** config.h 21 Oct 2004 17:23:22 -0000 1.7
--- config.h 15 Nov 2004 08:24:40 -0000 1.8
***************
*** 2,5 ****
--- 2,6 ----
# define CPPUT_CONFIG_H_INCLUDED
+ # include <cpptl/config.h>
# include <boost/config.hpp>
***************
*** 16,20 ****
//# define CPPUT_USE_BEOS_DLL
!
// compiler specific stuffs...
--- 17,21 ----
//# define CPPUT_USE_BEOS_DLL
! # define CPPUT_USE_RTTI_TO_NAME_SUITE 1
// compiler specific stuffs...
***************
*** 146,152 ****
--- 147,157 ----
namespace CppUT {
+
+ // defines YesType and NoType for simple generic programming
struct YesType {};
struct NoType { char padding[256]; };
+
+ /// Base class for non copyable class.
class CPPUT_API NonCopyable
{
|