Today's the day. Renamed platform to framework.
This commit is contained in:
19
serviceinterface/ServiceInterfaceStream.cpp
Normal file
19
serviceinterface/ServiceInterfaceStream.cpp
Normal file
@ -0,0 +1,19 @@
|
||||
/*
|
||||
* ServiceInterfaceStream.cpp
|
||||
*
|
||||
* Created on: 06.08.2015
|
||||
* Author: baetz
|
||||
*/
|
||||
|
||||
|
||||
#include <framework/serviceinterface/ServiceInterfaceStream.h>
|
||||
|
||||
void ServiceInterfaceStream::setActive( bool myActive) {
|
||||
this->buf.isActive = myActive;
|
||||
}
|
||||
|
||||
ServiceInterfaceStream::ServiceInterfaceStream(std::string set_message,
|
||||
uint16_t port) :
|
||||
std::basic_ostream<char, std::char_traits<char> >(&buf), buf(
|
||||
set_message, port) {
|
||||
}
|
Reference in New Issue
Block a user