]> Creatis software - bbtk.git/blobdiff - kernel/src/bbtkUtilities.cxx
ColourDialog -> ColourSelector
[bbtk.git] / kernel / src / bbtkUtilities.cxx
index f15e7080650ce658a9bc018695552c9722905d57..968853ff91b111f59a100382974cf1cb42f9eacb 100644 (file)
@@ -1,7 +1,34 @@
 #include "bbtkUtilities.h"
+
 
 namespace bbtk
 {
 
+
+bool Utilities::loosematch(std::string stdLine,std::string stdOptions) 
+{
+       bool result=false;
+         std::vector<std::string> tokens;
+         SplitString ( stdOptions,"|", tokens);
+         int i,size=tokens.size();  
+         for (i=0; i<size; i++)
+         {               
+#ifdef WIN32
+                 if ( strcmpi(stdLine.c_str(),tokens[i].c_str())==0) 
+                 { 
+                         result=true; 
+                 }               
+#else
+                 if ( strcasecmp(stdLine.c_str(),tokens[i].c_str())==0) 
+                 { 
+                         result=true; 
+                 }               
+#endif
+
+         }
+         return result;
+}
+
+
+
 }