diff options
author | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2010-11-29 21:50:29 +0100 |
---|---|---|
committer | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2010-11-29 21:50:29 +0100 |
commit | 977c77aa085b10e48505c861f5d47b3e881170e2 (patch) | |
tree | 985647f8f00798d7e2e499305b66d222242e6b40 /include/LuaTask.h | |
parent | 0fd6cb126b6238d2cbc01bed12ff043f45039c76 (diff) | |
parent | c99762a8980e691bab478f67b56b3fde56694e86 (diff) |
Merge branch 'master' of /pub/repo.git/Baltisot
Diffstat (limited to 'include/LuaTask.h')
-rw-r--r-- | include/LuaTask.h | 6 |
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 |