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