summaryrefslogtreecommitdiff
path: root/src/qcorsauthenticator_p.h
blob: ee218dc5d92054d9919c0d7d65af611b5c7a5fe3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef QCORSAUTHENTICATOR_P_H
#define QCORSAUTHENTICATOR_P_H

#include <qglobal.h>    //for QT_BEGIN_NAMESPACE
#include <QString>

//
//  W A R N I N G
//  -------------
//
// This file is not part of the Qt API.  It exists purely as an
// implementation detail.  This header file may change from version to
// version without notice, or even be removed.
//
// We mean it.
//
QT_BEGIN_NAMESPACE

class QCorsAuthenticatorPrivate
{
public:
    QCorsAuthenticatorPrivate(const QString &origin, bool allowed);
    ~QCorsAuthenticatorPrivate();

    QString m_origin;
    bool m_isAllowed;
};

#endif // QCORSAUTHENTICATOR_P_H