Mercurial > hg > Game > Cerium
annotate include/TaskManager/CellTaskInfo.h @ 109:028ffc9c0375 draft
Cerium cvs version
author | gongo@gendarme.local |
---|---|
date | Wed, 12 Nov 2008 17:39:33 +0900 |
parents | f7fd92a1d7bb |
children | 3fc86ddf5d1c |
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 |