Replace QMap with QHash

This commit is contained in:
Chocobo1 2019-08-04 17:22:28 +08:00
parent c004a84f84
commit f4e7b8c6bf
No known key found for this signature in database
GPG key ID: 210D9C873253A68C
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;
};