source: trunk/MagicSoft/Cosy/base/log.h@ 6711

Last change on this file since 6711 was 2384, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 246 bytes
Line 
1#ifndef COSY_Log
2#define COSY_Log
3
4#include <ostream.h>
5
6#ifndef MARS_MLog
7#include "MLog.h"
8#endif
9
10//#ifndef __CINT__
11extern MLog gLog;
12//#endif
13
14class Log
15{
16protected:
17 MLog &lout;
18
19public:
20 Log(MLog &out=gLog) : lout(out) {}
21};
22
23#endif
Note: See TracBrowser for help on using the repository browser.