Cutout Vis2012
TUWienVisualisierung2(SS2012)-AdaptiveCutaways
 All Classes Namespaces Functions Pages
StringUtil.h
1 #ifndef _STRING_UTIL_H_
2 #define _STRING_UTIL_H_
3 
4 #include <string>
5 #include <vector>
6 
11 {
12 public:
16  static void tokenize(const std::string& str, std::vector<std::string>* tokens, const std::string& delim=" ");
17  static std::string getBasePath(const std::string& str);
18  static std::string getFileName(const std::string& str);
19  static std::string getFileNameWithoutExtension(const std::string& str);
23  static std::string toLowerCase(const std::string& str);
24 };
25 
26 
27 
28 #endif