准备优化decode recvdata

dev
rankun 7 years ago
parent 28e5d808d9
commit 0747472fb5

@ -35,7 +35,8 @@ SOURCES += \
frames.cpp \
fpscounter.cpp \
qyuvopenglwidget.cpp \
videoform.cpp
videoform.cpp \
devicesocket.cpp
HEADERS += \
dialog.h \
@ -46,7 +47,8 @@ HEADERS += \
frames.h \
fpscounter.h \
qyuvopenglwidget.h \
videoform.h
videoform.h \
devicesocket.h
FORMS += \
dialog.ui \

@ -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…
Cancel
Save