StringUtils.hpp

Go to the documentation of this file.
00001 #ifndef wali_util_STRING_UTILS_GUARD
00002 #define wali_util_STRING_UTILS_GUARD 1
00003 
00004 /*!
00005  * @author Nicholas Kidd
00006  */
00007 
00008 #include <string>
00009 #include <vector>
00010 
00011 namespace wali
00012 {
00013   namespace util
00014   {
00015     class StringUtils
00016     {
00017       public:
00018         static void Tokenize(
00019             const std::string& str,
00020             std::vector<std::string>& tokens,
00021             const std::string& delimiters );
00022     };
00023   }
00024 }
00025 
00026 #endif  // wali_util_STRING_UTILS_GUARD
00027