|
From: Stephan <ste...@us...> - 2007-08-09 11:30:56
|
Update of /cvsroot/smartwin/SmartWin/SmartUtil In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv8610 Modified Files: tstring.h Log Message: Add tstringcollection as vector of tstring. Index: tstring.h =================================================================== RCS file: /cvsroot/smartwin/SmartWin/SmartUtil/tstring.h,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- tstring.h 23 Jun 2007 13:05:31 -0000 1.11 +++ tstring.h 9 Aug 2007 11:30:51 -0000 1.12 @@ -31,6 +31,7 @@ #include <sstream> #include <algorithm> #include <string> +#include <vector> #ifndef tstring_smartwin_H #define tstring_smartwin_H @@ -93,6 +94,7 @@ # endif //_FSTREAM_ #endif //UNICODE + typedef std::vector<tstring> tstringcollection; tstring string_replace(const tstring & source, const tstring & whatToReplace, const tstring & whatToReplaceWith); // end namespace SmartUtil |