HCE project C++ developers source code library  1.1.1
HCE project developer library
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
Algorithms.hpp
Go to the documentation of this file.
1 
14 #ifndef ALGORITHMS_HPP
15 #define ALGORITHMS_HPP
16 
17 #include <string>
18 #include <vector>
19 
20 namespace HCE
21 {
22 namespace algorithms
23 {
28  std::vector<std::string> stringSplitter(const std::string &inString, const std::string &separator, bool useEmptyToken);
29 }
30 }
31 
32 #endif