fsfw/src/fsfw/serviceinterface/ServiceInterfaceStream.cpp

30 lines
803 B
C++
Raw Normal View History

2021-07-13 20:22:54 +02:00
#include "fsfw/serviceinterface/ServiceInterfaceStream.h"
2021-01-03 14:16:52 +01:00
#if FSFW_CPP_OSTREAM_ENABLED == 1
2021-01-03 14:08:40 +01:00
ServiceInterfaceStream::ServiceInterfaceStream(std::string setMessage,
2020-06-04 14:08:26 +02:00
bool addCrToPreamble, bool buffered, bool errStream, uint16_t port) :
2020-06-04 19:37:33 +02:00
std::ostream(&streambuf),
streambuf(setMessage, addCrToPreamble, buffered, errStream, port) {}
void ServiceInterfaceStream::setActive( bool myActive) {
2020-06-04 19:37:33 +02:00
this->streambuf.isActive = myActive;
}
2020-07-21 15:15:53 +02:00
std::string* ServiceInterfaceStream::getPreamble() {
2020-06-04 19:37:33 +02:00
return streambuf.getPreamble();
2020-06-04 14:08:26 +02:00
}
2021-01-15 18:07:32 +01:00
bool ServiceInterfaceStream::crAdditionEnabled() const {
return streambuf.crAdditionEnabled();
}
2021-07-24 07:15:24 +02:00
#if FSFW_COLORED_OUTPUT == 1
2021-06-11 15:05:43 +02:00
void ServiceInterfaceStream::setAsciiColorPrefix(std::string asciiColorCode) {
2021-06-11 14:52:09 +02:00
streambuf.setAsciiColorPrefix(asciiColorCode);
}
2021-07-24 07:15:24 +02:00
#endif
2021-06-11 14:52:09 +02:00
2021-01-03 14:08:40 +01:00
#endif