diff options
author | Pixel <Pixel> | 2001-11-12 16:11:04 +0000 |
---|---|---|
committer | Pixel <Pixel> | 2001-11-12 16:11:04 +0000 |
commit | 709543dec3eaa07f7d2d7da2157d1f9159bad5d8 (patch) | |
tree | d18d30593f7b96ea3d2306bb6784d0a1a1a7a95e /include/TaskMan.h | |
parent | 6718e4cfec88e3046030f60775293d6de03cdc07 (diff) |
Taskman
Diffstat (limited to 'include/TaskMan.h')
-rw-r--r-- | include/TaskMan.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/TaskMan.h b/include/TaskMan.h index ca1cdb8..1efff93 100644 --- a/include/TaskMan.h +++ b/include/TaskMan.h @@ -7,13 +7,13 @@ class TaskMan : public Base { public: - TaskMan(); + TaskMan() throw (GeneralException); ~TaskMan(); - int AddTask(const Task &); + int AddTask(Task *); void MainLoop(); private: - vector<Task> TaskList; - static int Inited; + vector<Task *> TaskList; + static bool Inited; }; #else |