Subversion Repositories gelsvn

Rev

Rev 448 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 448 Rev 510
Line 1... Line 1...
1
#ifndef __UTIL_STRING_UTILS_H
1
#ifndef __UTIL_STRING_UTILS_H
2
#define __UTIL_STRING_UTILS_H
2
#define __UTIL_STRING_UTILS_H
3
 
3
 
-
 
4
#include <string>
-
 
5
#include <list>
-
 
6
 
4
namespace Util
7
namespace Util
5
{
8
{
6
  std::string trim(const std::string& s, const std::string& wspaces);
9
  std::string trim(const std::string& s, const std::string& wspaces);
7
  std::string trim(const std::string& s);
10
  std::string trim(const std::string& s);
8
  void split(const std::string& s, std::list<std::string>& result, const std::string& delim);
11
  void split(const std::string& s, std::list<std::string>& result, const std::string& delim);