serviceinterface taken over

This commit is contained in:
Robin Müller 2020-12-22 16:18:50 +01:00
parent 2e1ad41da7
commit 707bb9dd5d
2 changed files with 6 additions and 1 deletions

View File

@ -0,0 +1,5 @@
target_sources(${LIB_FSFW_NAME}
PRIVATE
ServiceInterfaceStream.cpp
ServiceInterfaceBuffer.cpp
)

View File

@ -30,7 +30,7 @@ protected:
//! This is called when buffer becomes full. If
//! buffer is not used, then this is called every
//! time when characters are put to stream.
int overflow(int c = std::ostream::traits_type::eof()) override;
int overflow(int c = Traits::eof()) override;
//! This function is called when stream is flushed,
//! for example when std::endl is put to stream.