Ignore:
Timestamp:
12/01/03 18:20:17 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mbase/MPrint.cc

    r2220 r2580  
    6262}
    6363
     64MPrint::MPrint()
     65{
     66    Init(0, 0);
     67    SetBit(kSeperator);
     68}
     69
    6470// --------------------------------------------------------------------------
    6571//
     
    112118    // The pointer is already given by the user.
    113119    //
    114     if (fObject)
     120    if (fObject || TestBit(kSeperator))
    115121        return kTRUE;
    116122
     
    144150Int_t MPrint::Process()
    145151{
    146     fObject->Print(fOption);
     152    if (TestBit(kSeperator))
     153        gLog << endl << setfill('-') << setw(72) << "-" << endl << endl;
     154    else
     155        fObject->Print(fOption);
    147156    return kTRUE;
    148157}
Note: See TracChangeset for help on using the changeset viewer.