Ignore:
Timestamp:
08/29/01 11:23:55 (24 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

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

    r909 r918  
    22#define MGLIST_H
    33
     4#ifdef DBG_MGLIST
    45#include <iostream.h>
     6#endif
    57
    68#ifndef ROOT_TOrdCollection
     
    1315    ~MGList()
    1416    {
     17#ifdef DBG_MGLIST
    1518        cout << "Deleting:" << flush;
     19#endif
    1620
    1721        TIter Next(this);
     
    2024        while ((obj=Next()))
    2125        {
     26#ifdef DBG_MGLIST
    2227            cout << " <" << ((TGObject*)obj)->GetName() << ">" << flush;
     28#endif
    2329            delete (TGObject*)obj;
    2430        }
     31#ifdef DBG_MGLIST
    2532        cout << endl;
     33#endif
    2634    }
    2735    void Add(TGObject *obj)
Note: See TracChangeset for help on using the changeset viewer.