comparison include/TaskManager/TaskListInfo.h @ 109:028ffc9c0375 draft

Cerium cvs version
author gongo@gendarme.local
date Wed, 12 Nov 2008 17:39:33 +0900
parents 16f9f6251f49
children 3fc86ddf5d1c
comparison
equal deleted inserted replaced
108:6f3b3dd3c095 109:028ffc9c0375
1 #ifndef INCLUDED_TASK_LIST_INFO 1 #ifndef INCLUDED_TASK_LIST_INFO
2 #define INCLUDED_TASK_LIST_INFO 2 #define INCLUDED_TASK_LIST_INFO
3 3
4 #ifndef INCLUDED_TASK 4 #ifndef INCLUDED_TYPES
5 # include "task.h" 5 # include "types.h"
6 #endif 6 #endif
7 7
8 #ifndef INCLUDED_TYPES 8 #ifndef INCLUDED_TASKLIST
9 # include "types.h" 9 # include "TaskList.h"
10 #endif 10 #endif
11 11
12 class TaskListInfo { 12 class TaskListInfo {
13 public: 13 public:
14 /* constructor */ 14 /* constructor */
15 TaskListInfo(void); 15 TaskListInfo(void);
16 virtual ~TaskListInfo(void); 16 virtual ~TaskListInfo(void);
17 17
18 /* functions */ 18 /* functions */
19 int init(int num); 19 int init(int num);
20 TaskListPtr create(void); 20 TaskListPtr create(void);
21 void free(TaskListPtr list); 21 void free(TaskListPtr list);
22 static TaskListPtr append(TaskListPtr list, TaskListPtr q); 22 static TaskListPtr append(TaskListPtr list, TaskListPtr q);