summaryrefslogtreecommitdiff
path: root/include/util/StringUtils.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/util/StringUtils.hpp')
-rw-r--r--include/util/StringUtils.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/util/StringUtils.hpp b/include/util/StringUtils.hpp
index d0c832e..af8e82f 100644
--- a/include/util/StringUtils.hpp
+++ b/include/util/StringUtils.hpp
@@ -2,9 +2,11 @@
#define __UTIL_STRING_UTILS_H
#include <string>
+#include <vector>
#include "util/UtilExportable.hpp"
UTIL_DLL_VISIBLE bool stringicasecmp( const std::string &s1, const std::string &s2 );
+UTIL_DLL_VISIBLE std::vector<std::string> split( const std::string &s, const std::string &delimiter, bool keepEmpty = true );
#endif