blob: 12e3bff2e96390f9d0308bfc7ea50f52f0eee74c (
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
|
#ifndef __TASK_H__
#define __TASK_H__
#ifdef __cplusplus
#include "Exceptions.h"
#define TASK_ON_HOLD 0
#define TASK_DONE 1
#define TASK_WAITING_HANDLE 2
#define TASK_WAITING_TIMEOUT 3
class Task : public Base {
public:
Task();
virtual ~Task();
virtual int Do();
int Run();
int GetState();
protected:
private:
int state;
};
#else
#error This only works with a C++ compiler
#endif
#endif
|