source:
trunk/MagicSoft/Cosy/base/log.h@
1714
Last change on this file since 1714 was 920, checked in by , 23 years ago | |
---|---|
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__ |
9 | extern MLog gLog; |
10 | //#endif |
11 | |
12 | class Log |
13 | { |
14 | protected: |
15 | MLog &lout; |
16 | |
17 | public: |
18 | Log(MLog &out=gLog) : lout(out) {} |
19 | }; |
20 | |
21 | #endif |
Note:
See TracBrowser
for help on using the repository browser.