00001 00002 #ifndef COMPARESTRING_HEADER 00003 #define COMPARESTRING_HEADER 00004 00005 #include <string> 00006 00007 // Returns true if strings match, allowing for 00008 // wild-cards "*" or "?" in string b only 00009 bool CompareString(const std::string& a, const std::string& b); 00010 00011 #endif