2023-11-05 15:44:01 +08:00

21 lines
289 B
C++

#ifndef UDPSENDER_H
#define UDPSENDER_H
#include <QObject>
#include <QUdpSocket>
#include <QtNetwork>
class udpSender : public QObject
{
Q_OBJECT
public:
explicit udpSender(QObject *parent = nullptr);
private:
QUdpSocket * UdpSocket;
signals:
};
#endif // UDPSENDER_H