aboutsummaryrefslogtreecommitdiffstats
path: root/src/util/DivideString.hxx
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/util/DivideString.hxx6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/util/DivideString.hxx b/src/util/DivideString.hxx
index d8d911691..126aa45d1 100644
--- a/src/util/DivideString.hxx
+++ b/src/util/DivideString.hxx
@@ -33,7 +33,11 @@ class DivideString {
const char *second;
public:
- DivideString(const char *s, char separator);
+ /**
+ * @param strip strip the first part and left-strip the second
+ * part?
+ */
+ DivideString(const char *s, char separator, bool strip=false);
~DivideString() {
delete[] first;