SLog enables writing both to cerr and cout simultaneously.
More...
#include <slog.h>
Detailed Description
SLog enables writing both to cerr and cout simultaneously.
Definition at line 13 of file slog.h.
Constructor & Destructor Documentation
Definition at line 18 of file slog.h.
{
disabled = false;
struct stat buf;
tty = fstat( fileno( stderr ), &buf ) >= 0
&& (buf.st_mode & S_IFMT) == S_IFCHR;
}
Member Function Documentation
SLog& SLog::operator<< |
( |
std::ostream &(*)(std::ostream &) |
pfun | ) |
[inline] |
Definition at line 25 of file slog.h.
{
if ( disabled ) return *this;
pfun( std::cerr );
if ( ! tty ) pfun( std::cout );
return *this;
}
Field Documentation
The documentation for this struct was generated from the following file: