[Mockpp-commits] mockpp/mockpp/compat Formatter.h,1.24,1.25
Brought to you by:
ewald-arnold
|
From: Ewald A. <ewa...@us...> - 2005-03-03 15:48:25
|
Update of /cvsroot/mockpp/mockpp/mockpp/compat In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18892/mockpp/compat Modified Files: Formatter.h Log Message: additional type Index: Formatter.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/compat/Formatter.h,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** Formatter.h 6 Jan 2005 13:09:22 -0000 1.24 --- Formatter.h 3 Mar 2005 15:48:16 -0000 1.25 *************** *** 131,135 **** * @return the resulting string */ ! mockpp::String & operator << (mockpp::String &formatter, char repdata); --- 131,146 ---- * @return the resulting string */ ! mockpp::String & operator << (mockpp::String &formatter, signed char repdata); ! ! ! /** Replace a positional %-parameter with a value. ! * Replaces the lowest %-parameter with the string representation of the data. ! * "hello %1" << 'A' gives "hello A" ! * @ingroup grp_helper ! * @param formatter target string with position parameter ! * @param repdata value to replace ! * @return the resulting string ! */ ! mockpp::String & operator << (mockpp::String &formatter, unsigned char repdata); |