summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/LuaTask.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/include/LuaTask.h b/include/LuaTask.h
index cd97900..af88059 100644
--- a/include/LuaTask.h
+++ b/include/LuaTask.h
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: LuaTask.h,v 1.7 2007-12-25 15:06:12 pixel Exp $ */
+/* $Id: LuaTask.h,v 1.8 2008-01-23 17:41:10 pixel Exp $ */
#ifndef __LUATASK_H__
#define __LUATASK_H__
@@ -32,8 +32,8 @@
class LuaTask : public Task {
public:
- LuaTask(Lua *, const String &);
- LuaTask(Lua *, int) throw (GeneralException);
+ LuaTask(Lua *, const String &, bool = false);
+ LuaTask(Lua *, int, bool = false) throw (GeneralException);
virtual ~LuaTask();
virtual String GetName();
protected:
@@ -50,6 +50,7 @@ class LuaTask : public Task {
InPipe * p;
String task;
+ bool destroy_VM;
static htab * h;
};