blob: 456f8f339ade11780d958e816e2f5941bf0cc3bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#ifndef __TASK_H__
#define __TASK_H__
#ifdef __cplusplus
#include "Exceptions.h"
#define TASK_ON_HOLD 0
#define TASK_DONE 1
class Task : public Base {
public:
Task();
virtual ~Task();
virtual String GetName();
int Run();
int GetState();
int Suspend() throw (GeneralException);
void Resume(int) throw (GeneralException);
protected:
virtual int Do();
private:
int state;
bool suspended;
};
#else
#error This only works with a C++ compiler
#endif
#endif
|