blob: 5826b1b05ddd8c12524f96c04d3f8c7828fa52ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#include <QString>
#include <QMap>
namespace Util {
static const QMap<QChar, QChar> unescapeChars {
{'n', '\n'},
};
QString trimQuotes(QString string, bool& trimmed);
}
|