summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorWillem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl>2016-07-28 15:32:50 +0200
committerWillem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl>2016-07-28 15:32:50 +0200
commit584fb584816aefca42518c9a6075ac2df814dac6 (patch)
tree8af36cd0fb5bc1691fe658823ec3731119500052 /include
parent302b0c7eacf46c7315f2390e270ad20f5025c342 (diff)
downloadastra-584fb584816aefca42518c9a6075ac2df814dac6.tar.gz
astra-584fb584816aefca42518c9a6075ac2df814dac6.tar.bz2
astra-584fb584816aefca42518c9a6075ac2df814dac6.tar.xz
astra-584fb584816aefca42518c9a6075ac2df814dac6.zip
Replace use of boost::split by own function
Diffstat (limited to 'include')
-rw-r--r--include/astra/Utilities.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/astra/Utilities.h b/include/astra/Utilities.h
index 8d7c44d..22adfe2 100644
--- a/include/astra/Utilities.h
+++ b/include/astra/Utilities.h
@@ -85,6 +85,9 @@ _AstraExport std::string doubleToString(double f);
template<typename T>
_AstraExport std::string toString(T f);
+
+_AstraExport void splitString(std::vector<std::string> &items, const std::string& s, const char *delim);
+
}