[Cppunit-cvs] cppunit2/include/opentest properties.h,1.4,1.5
Brought to you by:
blep
From: Baptiste L. <bl...@us...> - 2004-11-19 22:58:07
|
Update of /cvsroot/cppunit/cppunit2/include/opentest In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31257/include/opentest Modified Files: properties.h Log Message: * added toString() to Value & Properties. Index: properties.h =================================================================== RCS file: /cvsroot/cppunit/cppunit2/include/opentest/properties.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** properties.h 19 Nov 2004 19:31:38 -0000 1.4 --- properties.h 19 Nov 2004 22:57:57 -0000 1.5 *************** *** 140,143 **** --- 140,145 ---- Properties &append( const Value &value ); + std::string toString() const; + private: *************** *** 338,341 **** --- 340,345 ---- PropertyEnum properties() const; + std::string toString() const; + private: // Notes: can not use std::map because VC++6 implementation is buggy and cause *************** *** 366,369 **** --- 370,375 ---- void checkPathNotEmpty( const PropertyPath &path ) const; + std::string toString( const std::string &prefix ) const; + PropertyList properties_; IndexedProperties indexedProperties_; |