parent
28e5d808d9
commit
0747472fb5
@ -0,0 +1,6 @@
|
||||
#include "devicesocket.h"
|
||||
|
||||
DeviceSocket::DeviceSocket(QObject *parent) : QTcpSocket(parent)
|
||||
{
|
||||
|
||||
}
|
||||
@ -0,0 +1,17 @@
|
||||
#ifndef DEVICESOCKET_H
|
||||
#define DEVICESOCKET_H
|
||||
|
||||
#include <QTcpSocket>
|
||||
|
||||
class DeviceSocket : public QTcpSocket
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit DeviceSocket(QObject *parent = nullptr);
|
||||
|
||||
signals:
|
||||
|
||||
public slots:
|
||||
};
|
||||
|
||||
#endif // DEVICESOCKET_H
|
||||
Loading…
Reference in new issue