Codemesh Runtime v3 C++ API Reference  3.9.205
xmog_util_string.h
1 //
2 // Copyright (c) 1999-2020 by Codemesh, Inc.. ALL RIGHTS RESERVED.
3 //
4 
5 #ifndef XMOG_UTIL_STRING_INC
6 #define XMOG_UTIL_STRING_INC
7 
8 
9 #include <string>
10 #include <vector>
11 #include "xmog.h"
12 
13 
14 namespace xmog
15 {
16  namespace util
17  {
18  size_t XMOG_DECLSPEC split( std::vector<std::string> & result, const char * const str, const char * const delim );
19 
20  std::string XMOG_DECLSPEC tolower( const std::string & );
21 
22  std::string XMOG_DECLSPEC trim( const std::string & );
23 
24  std::string XMOG_DECLSPEC unquote( const std::string & );
25 
26  } // namespace util
27 
28 } // namespace xmog
29 
30 
31 #endif // XMOG_UTIL_STRING_INC

Copyright (c) 1999-2020 by Codemesh, Inc., ALL RIGHTS RESERVED.