mirror of
				https://github.com/hyperion-project/hyperion.ng.git
				synced 2025-03-01 10:33:28 +00: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);
 | |
| }
 |