comparison include/TaskManager/FifoTaskManagerImpl.h @ 3:2356238ebea7

*** empty log message ***
author gongo
date Tue, 05 Feb 2008 20:22:50 +0900
parents
children 41ccd4b38184
comparison
equal deleted inserted replaced
2:70e9baa00f51 3:2356238ebea7
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