source: trunk/MagicSoft/Mars/mbase/MTask.h@ 585

Last change on this file since 585 was 458, checked in by tbretz, 24 years ago
*** empty log message ***
File size: 912 bytes
Line 
1#ifndef MTASK_H
2#define MTASK_H
3
4/////////////////////////////////////////////////////////////////////////////
5// //
6// MTask //
7// //
8// Abstract base class for a task //
9// //
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef MINPUTSTREAMID_H
13#include "MInputStreamID.h"
14#endif
15
16class MParList;
17
18class MTask : public MInputStreamID
19{
20
21public:
22 ~MTask()
23 {
24 }
25
26 virtual Bool_t PreProcess(MParList *pList);
27 virtual Bool_t Process();
28 virtual Bool_t PostProcess();
29
30 ClassDef(MTask, 1) //Abstract base class for a task
31};
32
33#endif
Note: See TracBrowser for help on using the repository browser.