Parent Directory | Revision Log
An usefull command line parser
1 | #ifndef STRUTILS_H |
2 | #define STRUTILS_H |
3 | |
4 | #include <string> |
5 | |
6 | using std::string; |
7 | |
8 | namespace FCUtils { |
9 | string ToLower(const string &s); |
10 | string ToLower(const char *s); |
11 | }; |
12 | |
13 | #endif // STRUTILS_H |
ViewVC Help | |
Powered by ViewVC 1.1.23 |