aboutsummaryrefslogtreecommitdiff
path: root/src/FbTk/StringUtil.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/FbTk/StringUtil.hh')
-rw-r--r--src/FbTk/StringUtil.hh6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/FbTk/StringUtil.hh b/src/FbTk/StringUtil.hh
index 0c798ee..621f0fb 100644
--- a/src/FbTk/StringUtil.hh
+++ b/src/FbTk/StringUtil.hh
@@ -19,7 +19,7 @@
19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20// DEALINGS IN THE SOFTWARE. 20// DEALINGS IN THE SOFTWARE.
21 21
22//$Id: StringUtil.hh,v 1.4 2003/08/22 19:37:07 fluxgen Exp $ 22//$Id: StringUtil.hh,v 1.5 2003/08/22 22:11:19 fluxgen Exp $
23 23
24#ifndef FBTK_STRINGUTIL_HH 24#ifndef FBTK_STRINGUTIL_HH
25#define FBTK_STRINGUTIL_HH 25#define FBTK_STRINGUTIL_HH
@@ -49,6 +49,10 @@ int getStringBetween(std::string& out, const char *instr,
49std::string toLower(const std::string &conv); 49std::string toLower(const std::string &conv);
50/// @return upper case letters of conv 50/// @return upper case letters of conv
51std::string toUpper(const std::string &conv); 51std::string toUpper(const std::string &conv);
52#ifdef basename
53#undef basename
54#endif // basename
55std::string basename(const std::string &basename);
52 56
53/// Breaks a string into tokens 57/// Breaks a string into tokens
54template <typename Container> 58template <typename Container>