Heart 1.3.842.34c2ab5
Heart is base back end library for your c++ Qt projects.
tcpsocket.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 ABSTRACTSOCKET_H
9#define ABSTRACTSOCKET_H
10
11#include <QTcpSocket>
12
13namespace QH {
14
18class TcpSocket: public QTcpSocket
19{
20 Q_OBJECT
21public:
22 TcpSocket(QObject *parent);
23 ~TcpSocket();
24public slots:
25
30
31};
32
33}
34#endif // ABSTRACTSOCKET_H
The AbstractSocket class This class is wraper of the QAbstract socket with slot implementation of the...
Definition tcpsocket.h:19
void handleDisckonnetFromHost()
handleDisckonnetFromHost This is slot wrapper of the disconectFromHost method of QAbstractSocket clas...
Definition tcpsocket.cpp:21
The QH namespace - QuasarApp Heart namespace. This namespace contains all classes of the Heart librar...
Definition heart.cpp:13