source: trunk/MagicSoft/Mars/mbase/MContinue.h@ 1538

Last change on this file since 1538 was 1538, checked in by tbretz, 22 years ago
*** empty log message ***
File size: 1.0 KB
Line 
1#ifndef MARS_MContinue
2#define MARS_MContinue
3
4/////////////////////////////////////////////////////////////////////////////
5// //
6// MContinue //
7// //
8// Does nothing than return kCONTINUE in the Process-fucntion //
9// (use with filters) //
10// //
11/////////////////////////////////////////////////////////////////////////////
12
13#ifndef MARS_MTask
14#include "MTask.h"
15#endif
16
17class MFilter;
18
19class MContinue : public MTask
20{
21private:
22 Bool_t Process() { return kCONTINUE; }
23
24public:
25 MContinue(const char *name=NULL, const char *title=NULL);
26 MContinue(MFilter *f, const char *name=NULL, const char *title=NULL);
27
28 ClassDef(MContinue, 1) //Task returning kCONTINUE
29};
30
31#endif
Note: See TracBrowser for help on using the repository browser.