From a366b099a895e01e1d77d7ed2325ea5df9b0b689 Mon Sep 17 00:00:00 2001 From: pixel Date: Mon, 21 May 2007 16:05:58 +0000 Subject: Adding full LUA control for HTTP requests. --- include/LuaHttp.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 include/LuaHttp.h (limited to 'include') diff --git a/include/LuaHttp.h b/include/LuaHttp.h new file mode 100644 index 0000000..6d7af10 --- /dev/null +++ b/include/LuaHttp.h @@ -0,0 +1,16 @@ +#ifndef __LUAHTTP_H__ +#define __LUAHTTP_H__ + +#include +#include + +class LuaHttpResponse : public LuaObject { + public: + static void pushstatics(Lua *) throw (GeneralException); + LuaHttpResponse(HttpResponse *); + protected: + virtual void pushmembers(Lua *); + HttpResponse * r; +}; + +#endif -- cgit v1.2.3