clarifying commnet

This commit is contained in:
Robin Müller 2020-06-03 23:28:31 +02:00
parent 7259a13569
commit 9361568b45
1 changed files with 5 additions and 2 deletions

View File

@ -5,8 +5,11 @@
#include <iostream>
#include <cstdio>
// 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.
/* 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.
* 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 {
extern std::ostream debug;
extern std::ostream info;