comparison Core/Lua/LuaFunctionCall.h @ 1959:45c4387a379c

Access to the HTTP headers in the "IncomingHttpRequestFilter()" callback
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 07 Apr 2016 16:26:22 +0200
parents b1291df2f780
children 3eefb84ac0bd
comparison
equal deleted inserted replaced
1958:c746e2d42ac8 1959:45c4387a379c
60 60
61 void PushDouble(double value); 61 void PushDouble(double value);
62 62
63 void PushJson(const Json::Value& value); 63 void PushJson(const Json::Value& value);
64 64
65 void PushStringMap(const std::map<std::string, std::string>& value);
66
65 void Execute() 67 void Execute()
66 { 68 {
67 ExecuteInternal(0); 69 ExecuteInternal(0);
68 } 70 }
69 71