forked from glynos/cpp-netlib
-
Notifications
You must be signed in to change notification settings - Fork 424
Expand file tree
/
Copy pathmessage.hpp
More file actions
31 lines (25 loc) · 1.05 KB
/
message.hpp
File metadata and controls
31 lines (25 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Copyright Dean Michael Berris 2007.
// Copyright 2011 Dean Michael Berris (dberris@google.com).
// Copyright 2011 Google, Inc.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#ifndef NETWORK_MESSAGE_HPP_20111021
#define NETWORK_MESSAGE_HPP_20111021
#include <network/message_fwd.hpp>
#include <network/detail/directive_base.hpp>
#include <network/detail/wrapper_base.hpp>
#include <network/message/directives.hpp>
#include <network/message/wrappers.hpp>
#include <network/message/transformers.hpp>
#include <network/message/modifiers/add_header.hpp>
#include <network/message/modifiers/remove_header.hpp>
#include <network/message/modifiers/clear_headers.hpp>
#include <network/message/modifiers/source.hpp>
#include <network/message/modifiers/destination.hpp>
#include <network/message/modifiers/body.hpp>
#include <network/message/message.hpp>
#ifdef NETWORK_DEBUG
#include <network/message/message_concept.hpp>
#endif
#endif // NETWORK_MESSAGE_HPP_20111021