/home/docs/checkouts/readthedocs.org/user_builds/ratpac/checkouts/latest/src/util/include/RAT/StringUtil.hh Source File

Ratpac-two: /home/docs/checkouts/readthedocs.org/user_builds/ratpac/checkouts/latest/src/util/include/RAT/StringUtil.hh Source File
Ratpac-two
StringUtil.hh
1 #ifndef __RAT_StringUtil__
2 #define __RAT_StringUtil__
3 
4 #include <string>
5 
6 namespace RAT {
7 
8 // strips leading and trailing characters from s. This function by
9 // Glenn Horton-Smith.
10 std::string strip(const std::string &s, const std::string &stripchars);
11 // strip spaces, tabs, and quotation marks
12 std::string strip_default(const std::string &s);
13 
14 } // namespace RAT
15 
16 #endif
Definition: CCCrossSecMessenger.hh:29