From 031615ac866cc3c8f1900dd4b4aae2106ad31230 Mon Sep 17 00:00:00 2001 From: ipknHama Date: Thu, 7 Aug 2014 01:18:33 +0900 Subject: source resturcturing + CMake --- include/http_request.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 include/http_request.h (limited to 'include/http_request.h') diff --git a/include/http_request.h b/include/http_request.h new file mode 100644 index 0000000..83b6059 --- /dev/null +++ b/include/http_request.h @@ -0,0 +1,14 @@ +#pragma once + +#include "common.h" + +namespace crow +{ + struct request + { + HTTPMethod method; + std::string url; + std::unordered_map headers; + std::string body; + }; +} -- cgit v1.2.3-54-g00ecf