There was no '?' between path and query. Bug detected by someone on the internet.
[contrib/qtwebsockets.git] / src / qcorsauthenticator_p.h
1 #ifndef QCORSAUTHENTICATOR_P_H
2 #define QCORSAUTHENTICATOR_P_H
3
4 #include <qglobal.h>    //for QT_BEGIN_NAMESPACE
5 #include <QString>
6
7 //
8 //  W A R N I N G
9 //  -------------
10 //
11 // This file is not part of the Qt API.  It exists purely as an
12 // implementation detail.  This header file may change from version to
13 // version without notice, or even be removed.
14 //
15 // We mean it.
16 //
17 QT_BEGIN_NAMESPACE
18
19 class QCorsAuthenticatorPrivate
20 {
21 public:
22     QCorsAuthenticatorPrivate(const QString &origin, bool allowed);
23     ~QCorsAuthenticatorPrivate();
24
25     QString m_origin;
26     bool m_isAllowed;
27 };
28
29 #endif // QCORSAUTHENTICATOR_P_H