diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/LuaHttp.h | 16 |
1 files changed, 16 insertions, 0 deletions
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 <HttpServ.h> +#include <BLua.h> + +class LuaHttpResponse : public LuaObject { + public: + static void pushstatics(Lua *) throw (GeneralException); + LuaHttpResponse(HttpResponse *); + protected: + virtual void pushmembers(Lua *); + HttpResponse * r; +}; + +#endif |