Fix include paths

This commit is contained in:
Patrick Niklaus
2016-01-02 17:13:44 +01:00
parent b618a1241f
commit 97585bb26a
145 changed files with 627 additions and 627 deletions
+4 -4
View File
@@ -28,10 +28,10 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef CONNECTION_HPP
#define CONNECTION_HPP
#include "http/compression_type.hpp"
#include "http/reply.hpp"
#include "http/request.hpp"
#include "request_parser.hpp"
#include "server/http/compression_type.hpp"
#include "server/http/reply.hpp"
#include "server/http/request.hpp"
#include "server/request_parser.hpp"
#include <boost/array.hpp>
#include <boost/asio.hpp>
+1 -1
View File
@@ -28,7 +28,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef REPLY_HPP
#define REPLY_HPP
#include "header.hpp"
#include "server/http/header.hpp"
#include <boost/asio.hpp>
+3 -3
View File
@@ -28,9 +28,9 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef REQUEST_PARSER_HPP
#define REQUEST_PARSER_HPP
#include "http/compression_type.hpp"
#include "http/header.hpp"
#include "../data_structures/tribool.hpp"
#include "server/http/compression_type.hpp"
#include "server/http/header.hpp"
#include "util/tribool.hpp"
#include <tuple>
+4 -4
View File
@@ -28,11 +28,11 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef SERVER_HPP
#define SERVER_HPP
#include "connection.hpp"
#include "request_handler.hpp"
#include "server/connection.hpp"
#include "server/request_handler.hpp"
#include "../util/integer_range.hpp"
#include "../util/simple_logger.hpp"
#include "util/integer_range.hpp"
#include "util/simple_logger.hpp"
#include <boost/asio.hpp>
#include <boost/bind.hpp>