summaryrefslogtreecommitdiff
path: root/include/TaskMan.h
diff options
context:
space:
mode:
authorPixel <Pixel>2001-11-12 22:20:50 +0000
committerPixel <Pixel>2001-11-12 22:20:50 +0000
commitae4d1cfcbbe4c6130bd6370a03f546993a37f567 (patch)
treea423eced8aab74e0ed121ad1b3e828247ac5bb34 /include/TaskMan.h
parente57c35f00e5eba0ee5199997238cf3179a89c4d2 (diff)
Cleaning includes, progressing taskman...
Diffstat (limited to 'include/TaskMan.h')
-rw-r--r--include/TaskMan.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/TaskMan.h b/include/TaskMan.h
index 1efff93..03797af 100644
--- a/include/TaskMan.h
+++ b/include/TaskMan.h
@@ -8,12 +8,12 @@
class TaskMan : public Base {
public:
TaskMan() throw (GeneralException);
- ~TaskMan();
int AddTask(Task *);
- void MainLoop();
+ void MainLoop() throw (GeneralException);
private:
vector<Task *> TaskList;
- static bool Inited;
+ int number;
+ static bool inited;
};
#else