summaryrefslogtreecommitdiffstats
path: root/src/Util.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Util.hpp')
-rw-r--r--src/Util.hpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/Util.hpp b/src/Util.hpp
new file mode 100644
index 0000000..b0d1f78
--- /dev/null
+++ b/src/Util.hpp
@@ -0,0 +1,8 @@
+#pragma once
+
+#include <QString>
+
+namespace Util {
+ QString& trimQuotes(QString&& string, bool& trimmed);
+ QString& trimQuotes(const QString& string, bool& trimmed);
+}