Changeset 9157 for trunk/MagicSoft/Mars/mbase
- Timestamp:
- 11/12/08 16:16:11 (17 years ago)
- Location:
- trunk/MagicSoft/Mars/mbase
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbase/MContinue.cc
r8905 r9157 73 73 // 74 74 MContinue::MContinue(const TString rule, const char *name, const char *title) 75 : fTaskList(0) 75 : fTaskList(0), fRc(kCONTINUE) 76 76 { 77 77 fName = name ? name : "MContinue"; … … 96 96 // 97 97 MContinue::MContinue(MFilter *f, const char *name, const char *title) 98 : fTaskList(0) 98 : fTaskList(0), fRc(kCONTINUE) 99 99 { 100 100 fName = name ? name : "MContinue"; -
trunk/MagicSoft/Mars/mbase/MContinue.h
r7801 r9157 25 25 MTaskList *fTaskList; //! pointer to the present tasklist 26 26 27 Int_t fRc; 28 27 29 // MTask 28 30 Int_t PreProcess(MParList *list); 29 Int_t Process() { return kCONTINUE; }31 Int_t Process() { return fRc; } 30 32 Int_t PostProcess(); 31 33 … … 45 47 Bool_t IsInverted() const; 46 48 49 void SetRc(Int_t rc) { fRc = rc; } 50 47 51 // MParContainer 48 52 void SetDisplay(MStatusDisplay *d);
Note:
See TracChangeset
for help on using the changeset viewer.