KanoopProtocolQt 1.2.3
Qt HTTP operations and MQTT client library
Loading...
Searching...
No Matches
httpheaders.h
1#ifndef HTTPHEADERS_H
2#define HTTPHEADERS_H
3
4#include <QMap>
5#include <QNetworkRequest>
6#include <Kanoop/kanoopprotocol.h>
7
8/** @brief Map of custom HTTP header names to their values. */
9class LIBKANOOPPROTOCOL_EXPORT HttpCustomHeaders : public QMap<QString, QByteArray>
10{
11};
12
13/** @brief Map of Qt known HTTP headers to their values. */
14class LIBKANOOPPROTOCOL_EXPORT HttpKnownHeaders : public QMap<QNetworkRequest::KnownHeaders, QByteArray>
15{
16};
17
18#endif // HTTPHEADERS_H
Map of custom HTTP header names to their values.
Definition httpheaders.h:10
Map of Qt known HTTP headers to their values.
Definition httpheaders.h:15