summaryrefslogtreecommitdiffstats
path: root/src/Util.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Util.hpp')
-rw-r--r--src/Util.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Util.hpp b/src/Util.hpp
index ffd2fa3..c2ed916 100644
--- a/src/Util.hpp
+++ b/src/Util.hpp
@@ -11,4 +11,6 @@ namespace Util {
QString trimQuotes(QString string, bool& trimmed);
QString unescape(const QString& string, const QChar escapeChar = '\\');
QString escape(const QString& string, const QChar escapeChar = '\\', const QString& escapeChars = "");
+ QString joinEscape(const QStringList& list, const QChar joinChar, const QChar escapeChar = '\\');
+ QStringList splitEscaped(const QString& joined, const QChar splitChar, const QChar escapeChar = '\\');
}