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

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