mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
0964d1a9b0
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
21 lines
418 B
C++
21 lines
418 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef CHECKCLOUDCONNECTION_H
|
|
#define CHECKCLOUDCONNECTION_H
|
|
|
|
#include <QObject>
|
|
#include <QNetworkReply>
|
|
#include <QSsl>
|
|
|
|
class CheckCloudConnection : public QObject {
|
|
Q_OBJECT
|
|
public:
|
|
CheckCloudConnection(QObject *parent = 0);
|
|
bool checkServer();
|
|
private:
|
|
QNetworkReply *reply;
|
|
private
|
|
slots:
|
|
void sslErrors(QList<QSslError> errorList);
|
|
};
|
|
|
|
#endif // CHECKCLOUDCONNECTION_H
|