aboutsummaryrefslogtreecommitdiffstats
path: root/taglib/toolkit/tstring.h
diff options
context:
space:
mode:
Diffstat (limited to 'taglib/toolkit/tstring.h')
-rw-r--r--taglib/toolkit/tstring.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/taglib/toolkit/tstring.h b/taglib/toolkit/tstring.h
index 693d043f..10b9f66a 100644
--- a/taglib/toolkit/tstring.h
+++ b/taglib/toolkit/tstring.h
@@ -56,6 +56,8 @@
namespace TagLib {
+ class StringList;
+
//! A \e wide string class suitable for unicode.
/*!
@@ -240,6 +242,11 @@ namespace TagLib {
int rfind(const String &s, int offset = -1) const;
/*!
+ * Splits the string on each occurrence of \a separator.
+ */
+ StringList split(const String &separator = " ") const;
+
+ /*!
* Returns true if the strings starts with the substring \a s.
*/
bool startsWith(const String &s) const;