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

Last change on this file since 768 was 698, checked in by tbretz, 24 years ago
*** empty log message ***
File size: 911 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{
20public:
21 ~MTask()
22 {
23 }
24
25 virtual Bool_t PreProcess(MParList *pList);
26 virtual Bool_t Process();
27 virtual Bool_t PostProcess();
28
29 ClassDef(MTask, 0) //Abstract base class for a task
30};
31
32#endif
Note: See TracBrowser for help on using the repository browser.