Scheduler
stringUtils.h
Go to the documentation of this file.
1 
10 #ifndef STRING_UTILS_H
11 #define STRING_UTILS_H
12 
13 #include <string>
14 #include <vector>
15 
16 namespace Utils
17 {
18 
20 {
21 public:
22  static std::vector<std::string> split(std::string str, char delimiter);
23 };
24 
25 
26 }
27 
28 #endif
Definition: context.h:16
static std::vector< std::string > split(std::string str, char delimiter)
Definition: stringUtils.cpp:18