blob: e7498d7de3d2edfd520d1fde42a42f0853a457b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include "pixelsudpstreamer.h"
#include <QUdpSocket>
PixelsUdpStreamer::PixelsUdpStreamer(std::shared_ptr<ICamera> camera, QObject *parent)
: QObject{parent}
, IProtocol{camera}
{}
bool PixelsUdpStreamer::start()
{
m_socket = std::make_shared<QUdpSocket>();
return true;
}
void PixelsUdpStreamer::stop() {}
|