[Cppunit-cvs] cppunit2/include/cpput assertstring.h,1.2,1.3
Brought to you by:
blep
From: Baptiste L. <bl...@us...> - 2005-02-27 10:13:51
|
Update of /cvsroot/cppunit/cppunit2/include/cpput In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1959/include/cpput Modified Files: assertstring.h Log Message: * use ConstString instead of std::string * moved quoteString() from cpput/assertstring to cpptl/stringtools.h. Index: assertstring.h =================================================================== RCS file: /cvsroot/cppunit/cppunit2/include/cpput/assertstring.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** assertstring.h 1 Feb 2004 16:12:51 -0000 1.2 --- assertstring.h 27 Feb 2005 10:13:36 -0000 1.3 *************** *** 5,20 **** namespace CppUT { - /* - inline std::string CPPUT_API convertToString( const std::string &string ) - { - return string; - } - - inline std::string CPPUT_API convertToString( const char *cstring ) - { - return cstring; - } - */ - std::string CPPUT_API escape( const std::string &text ); void CPPUT_API checkStdStringStartsWith( const std::string &string, --- 5,8 ---- |