aboutsummaryrefslogtreecommitdiffstats
path: root/include/http_request.h
diff options
context:
space:
mode:
authoripknHama <ipknhama@gmail.com>2014-09-07 01:24:45 +0900
committeripknHama <ipknhama@gmail.com>2014-09-07 01:24:45 +0900
commitc89cafa820ec02f041c3b0e52877bc321f6a1ba9 (patch)
tree8b74deacdefd07048c230cb553efe6bb4e7352e1 /include/http_request.h
parentdaa3c820878f8e189120cf9359caf8b2359d61ca (diff)
downloadcrow-c89cafa820ec02f041c3b0e52877bc321f6a1ba9.tar.gz
crow-c89cafa820ec02f041c3b0e52877bc321f6a1ba9.zip
add Middlewares template to Crow main class, context implementation
Diffstat (limited to 'include/http_request.h')
-rw-r--r--include/http_request.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/http_request.h b/include/http_request.h
index 83b6059..77b3ecb 100644
--- a/include/http_request.h
+++ b/include/http_request.h
@@ -10,5 +10,7 @@ namespace crow
std::string url;
std::unordered_map<std::string, std::string> headers;
std::string body;
+
+ void* middleware_context;
};
}