Bimetric 3+1 toolkit for spherical symmetry
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines
SLog Struct Reference

SLog enables writing both to cerr and cout simultaneously. More...

#include <slog.h>

Public Member Functions

 SLog ()
SLogoperator<< (std::ostream &(*pfun)(std::ostream &))

Data Fields

bool disabled
bool tty

Detailed Description

SLog enables writing both to cerr and cout simultaneously.

Definition at line 13 of file slog.h.


Constructor & Destructor Documentation

SLog::SLog ( ) [inline]

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

Definition at line 15 of file slog.h.

bool SLog::tty

Definition at line 16 of file slog.h.


The documentation for this struct was generated from the following file: