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