#ifndef LOG_H #define LOG_H #include #include "MLog.h" //#ifndef __CINT__ extern MLog gLog; //#endif class Log { protected: MLog &lout; public: Log(MLog &out=gLog) : lout(out) {} }; #endif