Changeset 920 for trunk/MagicSoft/Cosy/base
- Timestamp:
- 08/29/01 16:44:38 (23 years ago)
- Location:
- trunk/MagicSoft/Cosy/base
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Cosy/base/Makefile
r910 r920 36 36 MTimeout.cc \ 37 37 msgqueue.cc \ 38 MLog.cc \ 39 MLogManip.cc \ 38 40 timer.cc 41 42 CINTHEADERS = MLog.h \ 43 MLogManip.h 39 44 40 45 SRCS = $(SRCFILES) -
trunk/MagicSoft/Cosy/base/log.h
r732 r920 4 4 #include <ostream.h> 5 5 6 #include "MLog.h" 7 8 //#ifndef __CINT__ 9 extern MLog gLog; 10 //#endif 11 6 12 class Log 7 13 { 8 14 protected: 9 ostream&lout;15 MLog &lout; 10 16 11 17 public: 12 Log( ostream &out=cout) : lout(out) {}18 Log(MLog &out=gLog) : lout(out) {} 13 19 }; 14 20
Note:
See TracChangeset
for help on using the changeset viewer.