mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
629461b944
cleanup Former-commit-id: 669f139386633e3435cdc33639134819464afd4d
38 lines
659 B
C++
38 lines
659 B
C++
#pragma once
|
|
|
|
// STL includes
|
|
#include <vector>
|
|
#include <map>
|
|
#include <cstdint>
|
|
#include <limits>
|
|
|
|
// QT includes
|
|
#include <QList>
|
|
#include <QStringList>
|
|
#include <QHostAddress>
|
|
|
|
// Utils includes
|
|
#include <utils/ColorRgb.h>
|
|
class MessageForwarder
|
|
{
|
|
public:
|
|
|
|
struct JsonSlaveAddress {
|
|
QHostAddress addr;
|
|
quint16 port;
|
|
};
|
|
|
|
MessageForwarder();
|
|
~MessageForwarder();
|
|
|
|
void addJsonSlave(std::string slave);
|
|
void addProtoSlave(std::string slave);
|
|
|
|
QStringList getProtoSlaves();
|
|
QList<MessageForwarder::JsonSlaveAddress> getJsonSlaves();
|
|
|
|
private:
|
|
QStringList _protoSlaves;
|
|
QList<MessageForwarder::JsonSlaveAddress> _jsonSlaves;
|
|
};
|