
Duplicate all data passed by the stream operator to two output streams. More...
#include <debug/copystream.h>
Public Member Functions | |
CopyStream (OutputStream *first, OutputStream *second) | |
Constructor. More... | |
template<typename T > | |
CopyStream & | operator<< (T value) |
Generic stream operator for any data type. More... | |
template<typename T > | |
CopyStream & | operator<< (T &(*f)(T &)) |
Deal with [OutputStream] manipulator functions. More... | |
![]() | |
![]() |
Additional Inherited Members | |
![]() | |
![]() | |
![]() |
Duplicate all data passed by the stream operator to two output streams.
Can be used as replacement for any OutputStream – for example, forwarding the DBG output simultaneously to screen (TextStream) and serial console (SerialStream).
By using template programming, two generic methods are sufficient (which simply forward the input to both).
|
inline |
Constructor.
first | First recipient for output passed to this object |
second | Second recipient for output passed to this object |
|
inline |
Generic stream operator for any data type.
Forwards all input to both recipients.
Uses template meta programming for a generic & short solution
T | Type of data to be forwarded |
value | data to be forwarded |
|
inline |
Deal with [OutputStream] manipulator functions.
T | Manipulator type |
f | pointer to manipulator function |