1 | // Copyright (C) 2019 The Qt Company Ltd. |
2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only |
3 | |
4 | #ifndef QHTTPSERVER_P_H |
5 | #define QHTTPSERVER_P_H |
6 | |
7 | // |
8 | // W A R N I N G |
9 | // ------------- |
10 | // |
11 | // This file is not part of the Qt API. It exists for the convenience |
12 | // of QHttpServer. This header file may change from version to |
13 | // version without notice, or even be removed. |
14 | // |
15 | // We mean it. |
16 | |
17 | #include <private/qabstracthttpserver_p.h> |
18 | |
19 | #include <QtHttpServer/qhttpserver.h> |
20 | #include <QtHttpServer/qhttpserverresponse.h> |
21 | #include <QtHttpServer/qhttpserverrequest.h> |
22 | #include <QtHttpServer/qhttpserverrouter.h> |
23 | |
24 | #include <QtCore/qglobal.h> |
25 | |
26 | #include <vector> |
27 | |
28 | QT_BEGIN_NAMESPACE |
29 | |
30 | class QHttpServerPrivate: public QAbstractHttpServerPrivate |
31 | { |
32 | Q_DECLARE_PUBLIC(QHttpServer) |
33 | |
34 | public: |
35 | QHttpServerPrivate() = default; |
36 | |
37 | QHttpServerRouter router; |
38 | std::vector<QHttpServer::AfterRequestHandler> afterRequestHandlers; |
39 | QHttpServer::MissingHandler missingHandler; |
40 | |
41 | void callMissingHandler(const QHttpServerRequest &request, QHttpServerResponder &&responder); |
42 | }; |
43 | |
44 | QT_END_NAMESPACE |
45 | |
46 | #endif // QHTTPSERVER_P_H |
47 | |