Changeset 909 for trunk/MagicSoft/Cosy/base
- Timestamp:
- 08/15/01 12:39:04 (23 years ago)
- Location:
- trunk/MagicSoft/Cosy/base
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Cosy/base/MGList.h
r732 r909 1 1 #ifndef MGLIST_H 2 2 #define MGLIST_H 3 4 #include <iostream.h> 3 5 4 6 #ifndef ROOT_TOrdCollection … … 11 13 ~MGList() 12 14 { 15 cout << "Deleting:" << flush; 16 13 17 TIter Next(this); 14 18 15 19 TObject *obj; 16 20 while ((obj=Next())) 21 { 22 cout << " <" << ((TGObject*)obj)->GetName() << ">" << flush; 17 23 delete (TGObject*)obj; 24 } 25 cout << endl; 18 26 } 19 27 void Add(TGObject *obj) -
trunk/MagicSoft/Cosy/base/msgqueue.cc
r732 r909 73 73 // 74 74 // 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 75 79 // 76 80 fBreak = 1; -
trunk/MagicSoft/Cosy/base/msgqueue.h
r732 r909 32 32 virtual ~MsgQueue(); 33 33 34 int Break() { return fBreak; }34 int Break() const { return fBreak; } 35 35 36 36 virtual void *Proc(int msg, void *mp1);
Note:
See TracChangeset
for help on using the changeset viewer.