summaryrefslogtreecommitdiff
path: root/include/TaskMan.h
diff options
context:
space:
mode:
authorPixel <Pixel>2001-11-12 16:11:04 +0000
committerPixel <Pixel>2001-11-12 16:11:04 +0000
commit709543dec3eaa07f7d2d7da2157d1f9159bad5d8 (patch)
treed18d30593f7b96ea3d2306bb6784d0a1a1a7a95e /include/TaskMan.h
parent6718e4cfec88e3046030f60775293d6de03cdc07 (diff)
Taskman
Diffstat (limited to 'include/TaskMan.h')
-rw-r--r--include/TaskMan.h8
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