From 71144aff0555013741b8f1ec320bfd95469179e7 Mon Sep 17 00:00:00 2001 From: methodus Date: Wed, 3 Oct 2012 22:34:29 +0200 Subject: Splitted tools.h into several tool headers to avoid clashed for example when only requiring string tools but not ixml tools. --- include/tools/string.h | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 include/tools/string.h (limited to 'include/tools/string.h') diff --git a/include/tools/string.h b/include/tools/string.h new file mode 100644 index 0000000..0ff5434 --- /dev/null +++ b/include/tools/string.h @@ -0,0 +1,29 @@ +/* + * string.h + * + * Created on: 03.10.2012 + * Author: savop + */ + +#ifndef STRING_H_ +#define STRING_H_ + +#include +#include "../tools.h" + +using namespace std; + +namespace upnp { + +namespace tools { + +string ToString(long number); +string StringListToCSV(StringList list); +string IdListToCSV(IdList list); +void StringExplode(string str, string separator, StringVector& results); + +} + +} // namespace upnp + +#endif /* STRING_H_ */ -- cgit v1.2.3