service interface stream enhancements #93

Merged
gaisser merged 14 commits from KSat/fsfw:mueller_ServiceStreamEnhancement into master 2020-07-21 12:18:20 +02:00
Showing only changes of commit 9361568b45 - Show all commits

View File

@ -5,8 +5,11 @@
#include <iostream> #include <iostream>
#include <cstdio> #include <cstdio>
// Unfortunately, there must be a forward declaration of the log front end /* Unfortunately, there must be a forward declaration of the log front end
// (MUST be defined in main), to let the system know where to write to. * (MUST be defined in main), to let the system know where to write to.
* The ServiceInterfaceStream instances, which are declared below and
* can instantaited somewhere else can be passed to these front ends by passing
* their underlying buffers with .rdbuf() */
namespace sif { namespace sif {
extern std::ostream debug; extern std::ostream debug;
extern std::ostream info; extern std::ostream info;