From 1311938cc52369b8631c29f83a9ecdf4a5f12f19 Mon Sep 17 00:00:00 2001 From: Pixel Date: Fri, 23 Nov 2001 11:26:50 +0000 Subject: Last modifications... --- include/TaskMan.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'include/TaskMan.h') diff --git a/include/TaskMan.h b/include/TaskMan.h index 2025e5c..e1c59d0 100644 --- a/include/TaskMan.h +++ b/include/TaskMan.h @@ -8,12 +8,13 @@ class TaskMan : public Base { public: static int AddTask(Task *); - static int RemoveTask(Task *); static void Init() throw (GeneralException); static void MainLoop() throw (GeneralException); private: - static vector TaskList; + typedef vector TaskList_t; + static TaskList_t TaskList; + static TaskList_t Zombies; static int number; static bool inited; }; -- cgit v1.2.3