mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
d89f504d83
Former-commit-id: 46176e53d1acf39f9bd0c0ecbb8e5fb5ab4d45be
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);
|
|
}
|