| 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 |
|
|---|
| 17 | class MFilter;
|
|---|
| 18 |
|
|---|
| 19 | class MContinue : public MTask
|
|---|
| 20 | {
|
|---|
| 21 | private:
|
|---|
| 22 | Bool_t Process() { return kCONTINUE; }
|
|---|
| 23 |
|
|---|
| 24 | public:
|
|---|
| 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.