Ignore:
Timestamp:
08/29/01 16:44:38 (23 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Cosy/base
Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Cosy/base/Makefile

    r910 r920  
    3636           MTimeout.cc \
    3737           msgqueue.cc \
     38           MLog.cc \
     39           MLogManip.cc \
    3840           timer.cc
     41
     42CINTHEADERS = MLog.h \
     43              MLogManip.h
    3944
    4045SRCS    = $(SRCFILES)
  • trunk/MagicSoft/Cosy/base/log.h

    r732 r920  
    44#include <ostream.h>
    55
     6#include "MLog.h"
     7
     8//#ifndef __CINT__
     9extern MLog gLog;
     10//#endif
     11
    612class Log
    713{
    814protected:
    9     ostream &lout;
     15    MLog &lout;
    1016
    1117public:
    12     Log(ostream &out=cout) : lout(out) {}
     18    Log(MLog &out=gLog) : lout(out) {}
    1319};
    1420
Note: See TracChangeset for help on using the changeset viewer.