aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/ci_map.h2
-rw-r--r--include/common.h1
-rw-r--r--include/middleware_context.h2
-rw-r--r--include/parser.h1
4 files changed, 6 insertions, 0 deletions
diff --git a/include/ci_map.h b/include/ci_map.h
index 9b48f0b..155d54f 100644
--- a/include/ci_map.h
+++ b/include/ci_map.h
@@ -1,6 +1,8 @@
#pragma once
+#include <boost/algorithm/string/predicate.hpp>
#include <boost/functional/hash.hpp>
+#include <unordered_map>
namespace crow
{
diff --git a/include/common.h b/include/common.h
index d19076a..619f4d5 100644
--- a/include/common.h
+++ b/include/common.h
@@ -3,6 +3,7 @@
#include <vector>
#include <string>
#include <stdexcept>
+#include <iostream>
#include "utility.h"
namespace crow
diff --git a/include/middleware_context.h b/include/middleware_context.h
index 980a821..daaaa5c 100644
--- a/include/middleware_context.h
+++ b/include/middleware_context.h
@@ -1,6 +1,8 @@
#pragma once
#include "utility.h"
+#include "http_request.h"
+#include "http_response.h"
namespace crow
{
diff --git a/include/parser.h b/include/parser.h
index 6ead8fd..f6b748b 100644
--- a/include/parser.h
+++ b/include/parser.h
@@ -6,6 +6,7 @@
#include <boost/tokenizer.hpp>
#include <algorithm>
+#include "http_parser_merged.h"
#include "http_request.h"
namespace crow