1
0
forked from fsfw/fsfw

exlcuding ostream headers

This commit is contained in:
2021-01-03 14:08:40 +01:00
parent afda3b2fa0
commit 4515c0d3cd
7 changed files with 26 additions and 2 deletions

View File

@ -1,5 +1,7 @@
#include "ServiceInterfaceStream.h"
#if CPP_OSTREAM_ENABLED == 1
ServiceInterfaceStream::ServiceInterfaceStream(std::string setMessage,
bool addCrToPreamble, bool buffered, bool errStream, uint16_t port) :
std::ostream(&streambuf),
@ -13,3 +15,5 @@ std::string* ServiceInterfaceStream::getPreamble() {
return streambuf.getPreamble();
}
#endif