// Copyright (C) 2019 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only #ifndef QHTTPSERVERROUTER_P_H #define QHTTPSERVERROUTER_P_H #include #include #include #include #include #include // // W A R N I N G // ------------- // // This file is not part of the Qt API. It exists for the convenience // of QHttpServer. This header file may change from version to // version without notice, or even be removed. // // We mean it. QT_BEGIN_NAMESPACE class QHttpServerRouterPrivate { public: QHttpServerRouterPrivate(QAbstractHttpServer *server); QHash converters; std::vector> rules; QAbstractHttpServer *server; bool verifyThreadAffinity(const QObject *contextObject) const; }; QT_END_NAMESPACE #endif // QHTTPSERVERROUTER_P_H