diff options
author | pixel <pixel> | 2007-05-21 16:05:58 +0000 |
---|---|---|
committer | pixel <pixel> | 2007-05-21 16:05:58 +0000 |
commit | a366b099a895e01e1d77d7ed2325ea5df9b0b689 (patch) | |
tree | 4525a9ba4c17ac4a17fe8706d5007c0b872fee04 /include | |
parent | 84875ddd4f59f89012048ff03fef6508b8b5456a (diff) |
Adding full LUA control for HTTP requests.
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 |