blob: 6d7af1010b6f9e74e506939da87578b3d9ec301d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
|