Mercurial > hg > Members > kono > Cerium
annotate include/TaskManager/CellTaskInfo.h @ 217:897aeb144569
fix
author | gongo@localhost.localdomain |
---|---|
date | Wed, 04 Feb 2009 22:50:42 +0900 |
parents | 5c194c71eca8 |
children | 7075842aa155 |
rev | line source |
---|---|
32 | 1 #ifndef INCLUDED_CELL_TASK_INFO |
2 #define INCLUDED_CELL_TASK_INFO | |
3 | |
109 | 4 #ifndef INCLUDED_BASE_H_ |
5 # include "base.h" | |
6 #endif | |
7 | |
32 | 8 #ifndef INCLUDED_TASK_INFO |
9 # include "TaskInfo.h" | |
10 #endif | |
11 | |
12 class CellTaskInfo : public TaskInfo { | |
13 public: | |
109 | 14 BASE_NEW_DELETE(CellTaskInfo); |
15 | |
32 | 16 /* function */ |
17 int extend_pool_taskList(int num); | |
18 TaskListPtr get_available_taskList(void); | |
19 void clear_taskList(void); | |
20 }; | |
21 | |
22 #endif |