You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
449 B
C
25 lines
449 B
C
7 months ago
|
#ifndef ENCODEMODELCAMERA_H
|
||
|
#define ENCODEMODELCAMERA_H
|
||
|
|
||
|
#include <QObject>
|
||
|
#include <QUdpSocket>
|
||
|
#include <QByteArray>
|
||
|
#include <QDataStream>
|
||
|
#include "global.h"
|
||
|
|
||
|
class EncodeModelCamera : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit EncodeModelCamera(QObject *parent = nullptr);
|
||
|
private:
|
||
|
QByteArray cmdArray;
|
||
|
QUdpSocket* cameraUDP;
|
||
|
public slots:
|
||
|
void SendCMD(QByteArray cmdDataArray);
|
||
|
|
||
|
signals:
|
||
|
};
|
||
|
|
||
|
#endif // ENCODEMODELCAMERA_H
|