1 | // Copyright (C) 2019 Mikhail Svetkin <mikhail.svetkin@gmail.com> |
2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only |
3 | |
4 | #ifndef QHTTPSERVERLITERALS_P_H |
5 | #define QHTTPSERVERLITERALS_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 <QtHttpServer/qthttpserverglobal.h> |
18 | |
19 | #include <QtCore/qstringfwd.h> |
20 | |
21 | QT_BEGIN_NAMESPACE |
22 | |
23 | namespace QHttpServerLiterals { |
24 | |
25 | QByteArray (); |
26 | QByteArray contentTypeXEmpty(); |
27 | QByteArray contentTypeTextHtml(); |
28 | QByteArray contentTypeJson(); |
29 | QByteArray (); |
30 | |
31 | } |
32 | |
33 | QT_END_NAMESPACE |
34 | |
35 | #endif // QHTTPSERVERLITERALS_P_H |
36 | |