gfxconversion/mifconv/inc/mifconv_util.h
branchGCC_SURGE
changeset 24 721cfe18efd0
parent 23 535624a8d239
--- a/gfxconversion/mifconv/inc/mifconv_util.h	Fri Jun 11 16:29:29 2010 +0100
+++ b/gfxconversion/mifconv/inc/mifconv_util.h	Thu Jul 22 16:38:28 2010 +0100
@@ -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.