annotate include/TaskManager/CellTaskManagerImpl.h @ 58:7492eb28b577
*** empty log message ***
author |
gongo |
date |
Sat, 16 Feb 2008 19:40:20 +0900 |
parents |
|
children |
6bc72fde6615 |
rev |
line source |
58
|
1 #ifndef INCLUDED_CELL_TASK_MANAGER_IMPL
|
|
2 #define INCLUDED_CELL_TASK_MANAGER_IMPL
|
|
3
|
|
4 #ifndef INCLUDED_TASK_MANAGER_IMPL
|
|
5 # include "TaskManagerImpl.h"
|
|
6 #endif
|
|
7
|
|
8 class CellTaskManagerImpl : public TaskManagerImpl {
|
|
9 public:
|
|
10 /* functions */
|
|
11 void init(void);
|
|
12 void run(void);
|
|
13 void spawn_task(HTaskPtr);
|
|
14 };
|
|
15
|
|
16 #endif
|