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

Last change on this file since 800 was 732, checked in by tbretz, 24 years ago
*** empty log message ***
File size: 155 bytes
Line 
1#ifndef LOG_H
2#define LOG_H
3
4#include <ostream.h>
5
6class Log
7{
8protected:
9 ostream &lout;
10
11public:
12 Log(ostream &out=cout) : lout(out) {}
13};
14
15#endif
Note: See TracBrowser for help on using the repository browser.