summaryrefslogtreecommitdiff
path: root/include/LuaCommandLine.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/LuaCommandLine.h')
-rw-r--r--include/LuaCommandLine.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/include/LuaCommandLine.h b/include/LuaCommandLine.h
new file mode 100644
index 0000000..f8abc92
--- /dev/null
+++ b/include/LuaCommandLine.h
@@ -0,0 +1,41 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+
+/* $Id: LuaCommandLine.h,v 1.1 2007-05-31 13:28:32 pixel Exp $ */
+
+#ifndef __LUACOMMANDLINE_H__
+#define __LUACOMMANDLINE_H__
+
+#include <BLua.h>
+#include <Task.h>
+#include <Socket.h>
+
+class LuaCommandLine : public Task {
+ public:
+ LuaCommandLine(Lua * _L, int _port = 1550);
+ virtual ~LuaCommandLine();
+ virtual String GetName();
+ virtual int Do() throw (GeneralException);
+ private:
+ Lua * L;
+ int port;
+ Socket Listener;
+};
+
+#endif