Replace QMap with QHash

This commit is contained in:
Chocobo1
2019-08-04 17:22:28 +08:00
parent c004a84f84
commit f4e7b8c6bf
4 changed files with 8 additions and 7 deletions

View File

@@ -98,8 +98,8 @@ namespace Http
QString method;
QString path;
QStringMap headers;
QMap<QString, QByteArray> query;
QStringMap posts;
QHash<QString, QByteArray> query;
QHash<QString, QString> posts;
QVector<UploadedFile> files;
};