#ifndef LOG_H #define LOG_H #include class Log { protected: ostream &lout; public: Log(ostream &out=cout) : lout(out) {} }; #endif