3
|
1 #ifndef INCLUDED_FIFO_TASK_MANAGER_IMPL
|
|
2 #define INCLUDED_FIFO_TASK_MANAGER_IMPL
|
|
3
|
|
4 #ifndef INCLUDED_FIFO_TASK_INFO
|
|
5 # include "FifoTaskInfo.h"
|
|
6 #endif
|
|
7
|
|
8 #ifndef INCLUDED_TASK_MANAGER_IMPL
|
|
9 # include "TaskManagerImpl.h"
|
|
10 #endif
|
|
11
|
|
12 #ifndef INCLUDED_MAIL_MANAGER
|
|
13 # include "MailManager.h"
|
|
14 #endif
|
|
15
|
|
16 class FifoTaskManagerImpl : public TaskManagerImpl {
|
|
17 public:
|
|
18 /* functions */
|
|
19 void init(void);
|
|
20 void run(void);
|
|
21
|
|
22 TaskListPtr set_task(void);
|
|
23
|
|
24 private:
|
|
25 /* variables */
|
|
26 MailManager *mailManager;
|
|
27
|
|
28 /* functions */
|
|
29 MailQueuePtr mail_check(MailQueuePtr mail_list);
|
|
30 };
|
|
31
|
|
32 #endif
|