Heart 1.3.842.34c2ab5
Heart is base back end library for your c++ Qt projects.
sslsocket.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 2018-2024 QuasarApp.
3 * Distributed under the lgplv3 software license, see the accompanying
4 * Everyone is permitted to copy and distribute verbatim copies
5 * of this license document, but changing it is not allowed.
6*/
7
8#ifndef SSLSOCKET_H
9#define SSLSOCKET_H
10
11#include "heart_global.h"
12
13#ifdef USE_HEART_SSL
14
15#include <QSslSocket>
16
17namespace QH {
18
22class SslSocket: public QSslSocket
23{
24 Q_OBJECT
25public:
26 SslSocket(QObject *parent);
27 ~SslSocket();
28public slots:
29
33 void handleDisckonnetFromHost();
34
35signals:
36
42 void sslErrorsOcurred(SslSocket* sender, const QList<QSslError> &errors);
43};
44}
45#endif
46#endif // SSLSOCKET_H
47
48
The QH namespace - QuasarApp Heart namespace. This namespace contains all classes of the Heart librar...
Definition heart.cpp:13