Tidy up includes

This commit is contained in:
Vinnie Falco
2014-03-24 07:21:19 -07:00
parent 93021a054b
commit 587a379b43
9 changed files with 24 additions and 1 deletions

View File

@@ -20,6 +20,8 @@
#ifndef BEAST_ASIO_BASICS_SSLCONTEXT_H_INCLUDED
#define BEAST_ASIO_BASICS_SSLCONTEXT_H_INCLUDED
#include <boost/asio/ssl/context.hpp>
namespace beast {
namespace asio {

View File

@@ -20,6 +20,8 @@
#ifndef BEAST_ASIO_HTTPFIELD_H_INCLUDED
#define BEAST_ASIO_HTTPFIELD_H_INCLUDED
#include "../../../beast/strings/String.h"
namespace beast {
/** A single header.

View File

@@ -20,6 +20,10 @@
#ifndef BEAST_ASIO_HTTPHEADERS_H_INCLUDED
#define BEAST_ASIO_HTTPHEADERS_H_INCLUDED
#include "HTTPField.h"
#include "../../beast_core/text/StringPairArray.h"
namespace beast {
/** A set of HTTP headers. */

View File

@@ -20,7 +20,12 @@
#ifndef BEAST_ASIO_HTTPMESSAGE_H_INCLUDED
#define BEAST_ASIO_HTTPMESSAGE_H_INCLUDED
#include "HTTPHeaders.h"
#include "HTTPVersion.h"
#include "../../../beast/smart_ptr/SharedObject.h"
#include "../../../beast/net/DynamicBuffer.h"
#include "../../beast_core/text/StringPairArray.h"
namespace beast {

View File

@@ -20,6 +20,9 @@
#ifndef BEAST_ASIO_HTTPPARSER_H_INCLUDED
#define BEAST_ASIO_HTTPPARSER_H_INCLUDED
#include "HTTPRequest.h"
#include "HTTPResponse.h"
namespace beast {
class HTTPParserImpl;

View File

@@ -20,6 +20,8 @@
#ifndef BEAST_ASIO_HTTPREQUEST_H_INCLUDED
#define BEAST_ASIO_HTTPREQUEST_H_INCLUDED
#include "HTTPMessage.h"
namespace beast {
class HTTPRequest : public HTTPMessage

View File

@@ -20,6 +20,9 @@
#ifndef BEAST_ASIO_HANDSHAKE_HANDSHAKEDETECTLOGICPROXY_H_INCLUDED
#define BEAST_ASIO_HANDSHAKE_HANDSHAKEDETECTLOGICPROXY_H_INCLUDED
#include "HandshakeDetectLogic.h"
#include "InputParser.h"
namespace beast {
namespace asio {

View File

@@ -20,6 +20,8 @@
#ifndef BEAST_ASIO_HANDSHAKE_INPUTPARSER_H_INCLUDED
#define BEAST_ASIO_HANDSHAKE_INPUTPARSER_H_INCLUDED
#include "../basics/FixedInputBuffer.h"
namespace beast {
namespace asio {

View File

@@ -35,7 +35,7 @@ namespace beast {
@see String, StringPairArray
*/
class StringArray : LeakChecked <StringArray>
class StringArray
{
public:
//==============================================================================