Changeset 7685 for trunk/MagicSoft/Mars/mbase
- Timestamp:
- 05/03/06 11:54:00 (19 years ago)
- Location:
- trunk/MagicSoft/Mars/mbase
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbase/MTaskList.cc
r7682 r7685 318 318 // for one of the tasks 319 319 // 320 Bool_t MTaskList::AddToList(const TList &list )320 Bool_t MTaskList::AddToList(const TList &list, const char *tType) 321 321 { 322 322 TIter Next(&list); … … 330 330 } 331 331 332 if (!AddToList( obj))332 if (!AddToList(static_cast<MTask*>(obj), tType)) 333 333 return kFALSE; 334 334 } -
trunk/MagicSoft/Mars/mbase/MTaskList.h
r7682 r7685 47 47 Bool_t AddToListAfter(MTask *task, const MTask *where, const char *tType="All"); 48 48 Bool_t AddToList(MTask *task, const char *tType="All"); 49 Bool_t AddToList(const TList &list );49 Bool_t AddToList(const TList &list, const char *tType="All"); 50 50 51 51 void SetSerialNumber(Byte_t num);
Note:
See TracChangeset
for help on using the changeset viewer.