Ignore:
Timestamp:
08/15/01 12:39:04 (23 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Cosy/base
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Cosy/base/MGList.h

    r732 r909  
    11#ifndef MGLIST_H
    22#define MGLIST_H
     3
     4#include <iostream.h>
    35
    46#ifndef ROOT_TOrdCollection
     
    1113    ~MGList()
    1214    {
     15        cout << "Deleting:" << flush;
     16
    1317        TIter Next(this);
    1418
    1519        TObject *obj;
    1620        while ((obj=Next()))
     21        {
     22            cout << " <" << ((TGObject*)obj)->GetName() << ">" << flush;
    1723            delete (TGObject*)obj;
     24        }
     25        cout << endl;
    1826    }
    1927    void Add(TGObject *obj)
  • trunk/MagicSoft/Cosy/base/msgqueue.cc

    r732 r909  
    7373    //
    7474    // Set break state and wait until Proc() returned (break state deleted)
     75    // This means, that a new command is invoked and (if forseen) the
     76    // running command should stop execution.
     77    //
     78    // This is some kind of controlled user break without using signals
    7579    //
    7680    fBreak = 1;
  • trunk/MagicSoft/Cosy/base/msgqueue.h

    r732 r909  
    3232    virtual ~MsgQueue();
    3333
    34     int Break() { return fBreak; }
     34    int Break() const { return fBreak; }
    3535
    3636    virtual void *Proc(int msg, void *mp1);
Note: See TracChangeset for help on using the changeset viewer.