21 lines
289 B
C++
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
|