summaryrefslogtreecommitdiff
path: root/src/protocols/pixelsudpstreamer.cpp
blob: 2855a35d58c543786b75188a80c231f7666c1701 (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<IScanner> scanner, QObject *parent)
    : QObject{parent}
    , IProtocol{scanner}
{}

bool PixelsUdpStreamer::start()
{
    m_socket = std::make_shared<QUdpSocket>();

    return true;
}

void PixelsUdpStreamer::stop() {}