Revision: | 29 |
Committed: | Tue Aug 2 21:24:54 2011 UTC (13 years, 3 months ago) by gpertea | File size: | 363 byte(s) |
Log Message: | adding tophat source work |
Line | File contents |
---|---|
1 | #ifndef TOKENIZE_H_ |
2 | #define TOKENIZE_H_ |
3 | |
4 | #include <string> |
5 | #include <vector> |
6 | |
7 | void tokenize(const std::string& s, |
8 | const std::string& delims, |
9 | std::vector<std::string>& ss); |
10 | |
11 | void tokenize_strict(const std::string& s, |
12 | const std::string& delims, |
13 | std::vector<string>& ss); |
14 | #endif /*TOKENIZE_H_*/ |