CARMA C++
StringUtils.h
1 #ifndef SZA_UTIL_STRINGUTILS_H
2 #define SZA_UTIL_STRINGUTILS_H
3 
11 #include <string>
12 
13 namespace sza {
14  namespace util {
15 
16  void strip(std::string& targetStr, std::string& stripStr);
17 
18  void strip(std::string& targetStr, char stripChar);
19 
20  } // End namespace util
21 } // End namespace sza
22 
23 
24 
25 #endif // End #ifndef SZA_UTIL_STRINGUTILS_H