types.h
Go to the documentation of this file.
1 #ifndef HTTP_TYPES_H
2 #define HTTP_TYPES_H
3 
4 #include <QMap>
5 
6 namespace dnai {
7  namespace http {
8  class Url;
9  typedef QMap<QString, QString> Headers;
10  typedef QMap<QString, QString> Params;
11  typedef QMap<QString, QString> Form;
12  typedef std::function<void (Url*)> InterceptorFunction;
13  }
14 }
15 #endif // TYPES_H
std::function< void(Url *)> InterceptorFunction
Definition: types.h:12
QMap< QString, QString > Headers
Definition: types.h:8
QMap< QString, QString > Form
Definition: types.h:11
Definition: url.h:16
Definition: api.h:13
QMap< QString, QString > Params
Definition: types.h:10