summaryrefslogtreecommitdiffstats
path: root/examples/network/multistreamclient/consumer.h
blob: ea146520c8a50b11fa206818f3039b79d358c96d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright (C) 2016 Alex Trotsenko <alex1973tr@gmail.com>
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

#ifndef CONSUMER_H
#define CONSUMER_H

#include <QObject>
#include <QByteArray>

QT_BEGIN_NAMESPACE
class QWidget;
QT_END_NAMESPACE

class Consumer : public QObject
{
    Q_OBJECT
public:
    explicit inline Consumer(QObject *parent = nullptr) : QObject(parent) { }

    virtual QWidget *widget() = 0;
    virtual void readDatagram(const QByteArray &ba) = 0;
    virtual void serverDisconnected() { }

signals:
    void writeDatagram(const QByteArray &ba);
};

#endif