summaryrefslogtreecommitdiff
path: root/include/LuaTask.h
diff options
context:
space:
mode:
authorpixel <pixel>2007-12-20 17:06:29 +0000
committerpixel <pixel>2007-12-20 17:06:29 +0000
commit9d308fa82533e7d9573d7a0d242a4d9dfea1ae78 (patch)
treeb6fc28a10b0638ecd4568457c99a579bd8a7b14f /include/LuaTask.h
parent9c5c95217a11a36525ac25b546579fff1eace660 (diff)
Forgot to commit these.
Diffstat (limited to 'include/LuaTask.h')
-rw-r--r--include/LuaTask.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/LuaTask.h b/include/LuaTask.h
index fa799c0..221646f 100644
--- a/include/LuaTask.h
+++ b/include/LuaTask.h
@@ -17,11 +17,12 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: LuaTask.h,v 1.5 2007-05-30 11:57:08 pixel Exp $ */
+/* $Id: LuaTask.h,v 1.6 2007-12-20 17:06:29 pixel Exp $ */
#ifndef __LUATASK_H__
#define __LUATASK_H__
+#include <vector>
#include <hashtab.h>
#include <Task.h>
@@ -38,6 +39,7 @@ class LuaTask : public Task {
protected:
virtual int Do() throw (GeneralException);
private:
+ std::vector<String> array_to_vector(int index) throw (GeneralException);
LuaTask * gettop();
void settop(LuaTask *);
Lua * L;