diff -r 6f2509db2f56 -r 535624a8d239 gfxconversion/mifconv/inc/mifconv_util.h --- a/gfxconversion/mifconv/inc/mifconv_util.h Thu May 27 13:23:07 2010 +0300 +++ b/gfxconversion/mifconv/inc/mifconv_util.h Tue Jul 06 14:53:04 2010 +0300 @@ -99,6 +99,15 @@ */ static void ReplaceChar( MifConvString& str, char replaceFrom, char replaceTo); + /** + * Replaces given strings to other one from the given string. + * @param str String from which the characters will be replaced. + * @param replaceFrom This section of the str will be replaced by other one. + * @param replaceTo Characters will be replaced by this. + */ + static void ReplaceStr( MifConvString& str, + MifConvString replaceFrom, MifConvString replaceTo); + /** * Tells whether the given character is a whitespace character or not. * @param c Charater to be investigated.