summaryrefslogtreecommitdiff
path: root/include/TaskMan.h
diff options
context:
space:
mode:
authorPixel <Pixel>2001-11-14 16:59:02 +0000
committerPixel <Pixel>2001-11-14 16:59:02 +0000
commitaa92df3c58daefb994da555fb45f2e3ee55f38d5 (patch)
tree6105f0ced059af0fceb10a29f318d0c13c83d051 /include/TaskMan.h
parent9235fbc2a736da2c68eb2dc0a3c1007b4a202d5e (diff)
Latest and various changes
Diffstat (limited to 'include/TaskMan.h')
-rw-r--r--include/TaskMan.h13
1 files changed, 6 insertions, 7 deletions
diff --git a/include/TaskMan.h b/include/TaskMan.h
index dc8c913..16bc0ee 100644
--- a/include/TaskMan.h
+++ b/include/TaskMan.h
@@ -7,14 +7,13 @@
class TaskMan : public Base {
public:
- TaskMan() throw (GeneralException);
- int AddTask(Task *);
- int TaskMan::RemoveTask(Task *);
- void Init() throw (GeneralException);
- void MainLoop() throw (GeneralException);
+ static int AddTask(Task *);
+ static int RemoveTask(Task *);
+ static void Init() throw (GeneralException);
+ static void MainLoop() throw (GeneralException);
private:
- vector<Task *> TaskList;
- int number;
+ static vector<Task *> TaskList;
+ static int number;
static bool inited;
};