update _global file, to match Qt default
[contrib/qtwebsockets.git] / src / websockets / qwebsocketcorsauthenticator.h
1 /*
2 QWebSockets implements the WebSocket protocol as defined in RFC 6455.
3 Copyright (C) 2013 Kurt Pattyn (pattyn.kurt@gmail.com)
4
5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
9
10 This library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public
16 License along with this library; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
18 */
19 #ifndef QWEBSOCKETCORSAUTHENTICATOR_H
20 #define QWEBSOCKETCORSAUTHENTICATOR_H
21
22 #include "qwebsockets_global.h"
23
24 QT_BEGIN_NAMESPACE
25
26 class QWebSocketCorsAuthenticatorPrivate;
27
28 class Q_WEBSOCKETS_EXPORT QWebSocketCorsAuthenticator
29 {
30     Q_DECLARE_PRIVATE(QWebSocketCorsAuthenticator)
31
32 public:
33     QWebSocketCorsAuthenticator(const QString &origin);
34     ~QWebSocketCorsAuthenticator();
35     QWebSocketCorsAuthenticator(const QWebSocketCorsAuthenticator &other);
36
37     QWebSocketCorsAuthenticator &operator =(const QWebSocketCorsAuthenticator &other);
38
39     QString origin() const;
40
41     void setAllowed(bool allowed);
42     bool allowed() const;
43
44 private:
45     QWebSocketCorsAuthenticatorPrivate * const d_ptr;
46 };
47
48 #endif // QWEBSOCKETCORSAUTHENTICATOR_H