mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
20 lines
537 B
C++
20 lines
537 B
C++
|
// protoserver includes
|
||
|
#include "protoserver/ProtoConnectionWrapper.h"
|
||
|
|
||
|
ProtoConnectionWrapper::ProtoConnectionWrapper(const std::string & address, int priority, int duration_ms, bool skipProtoReply) :
|
||
|
_priority(priority),
|
||
|
_duration_ms(duration_ms),
|
||
|
_connection(address)
|
||
|
{
|
||
|
_connection.setSkipReply(skipProtoReply);
|
||
|
}
|
||
|
|
||
|
ProtoConnectionWrapper::~ProtoConnectionWrapper()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void ProtoConnectionWrapper::receiveImage(const Image<ColorRgb> & image)
|
||
|
{
|
||
|
_connection.setImage(image, _priority, _duration_ms);
|
||
|
}
|