summaryrefslogtreecommitdiff
path: root/include/LuaTask.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/LuaTask.h')
-rw-r--r--include/LuaTask.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/LuaTask.h b/include/LuaTask.h
index 3695dcb..ae18d40 100644
--- a/include/LuaTask.h
+++ b/include/LuaTask.h
@@ -21,7 +21,7 @@
#define __LUATASK_H__
#include <vector>
-#include <hashtab.h>
+#include <map>
#include <Task.h>
#include <Buffer.h>
@@ -50,12 +50,12 @@ class LuaTask : public Task {
String task;
bool destroy_VM;
- static htab * h;
+ static std::map<Lua *, LuaTask *> h;
};
class LuaTaskMan : public LuaObject {
public:
static void pushstatics(Lua *) throw (GeneralException);
-};
+};
#endif