added missing header for amalgate

This commit is contained in:
ipknHama 2014-10-24 04:17:20 +09:00
parent bdc9dd8d48
commit 4b3b8070e7
4 changed files with 6 additions and 0 deletions

View File

@ -1,6 +1,8 @@
#pragma once
#include <boost/algorithm/string/predicate.hpp>
#include <boost/functional/hash.hpp>
#include <unordered_map>
namespace crow
{

View File

@ -3,6 +3,7 @@
#include <vector>
#include <string>
#include <stdexcept>
#include <iostream>
#include "utility.h"
namespace crow

View File

@ -1,6 +1,8 @@
#pragma once
#include "utility.h"
#include "http_request.h"
#include "http_response.h"
namespace crow
{

View File

@ -6,6 +6,7 @@
#include <boost/tokenizer.hpp>
#include <algorithm>
#include "http_parser_merged.h"
#include "http_request.h"
namespace crow