File tree Expand file tree Collapse file tree 3 files changed +6
-21
lines changed Expand file tree Collapse file tree 3 files changed +6
-21
lines changed Original file line number Diff line number Diff line change 6
6
#ifndef __NETWORK_MESSAGE_HPP__
7
7
#define __NETWORK_MESSAGE_HPP__
8
8
9
- #include < map>
10
- #include < string>
11
-
12
-
13
- // include message declaration
14
9
#include " boost/network/message_fwd.hpp"
15
-
16
- // include traits implementation
17
10
#include < boost/network/traits/string.hpp>
18
11
#include < boost/network/traits/ostringstream.hpp>
19
12
#include < boost/network/traits/headers_container.hpp>
20
-
21
- // include directives base
22
13
#include < boost/network/detail/directive_base.hpp>
23
-
24
- // include wrappers base
25
14
#include < boost/network/detail/wrapper_base.hpp>
15
+ #include < boost/network/message/directives.hpp>
16
+ #include < boost/network/message/wrappers.hpp>
17
+ #include < boost/network/message/transformers.hpp>
26
18
27
19
#include < boost/network/message/message_concept.hpp>
28
20
@@ -122,14 +114,5 @@ BOOST_CONCEPT_ASSERT((Message<basic_message<boost::network::tags::default_wstrin
122
114
} // namespace network
123
115
} // namespace boost
124
116
125
- #include < boost/network/message/directives.hpp>
126
- // pull in directives header file
127
-
128
- #include < boost/network/message/wrappers.hpp>
129
- // pull in wrappers header file
130
-
131
- #include < boost/network/message/transformers.hpp>
132
- // pull in transformer header file
133
-
134
117
#endif // __NETWORK_MESSAGE_HPP__
135
118
Original file line number Diff line number Diff line change 13
13
#include < boost/shared_ptr.hpp>
14
14
#include < boost/bind.hpp>
15
15
#include < boost/asio/ip/tcp.hpp>
16
+ #include < boost/network/protocol/http/request.hpp>
17
+ #include < boost/network/protocol/http/response.hpp>
16
18
#include < boost/network/protocol/http/connection.hpp>
17
19
#include < boost/network/traits/string.hpp>
18
20
Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ namespace boost { namespace network { namespace uri {
100
100
template <class Tag >
101
101
struct basic_uri : uri_base<Tag> {
102
102
using uri_base<Tag>::operator =;
103
- using uri_base<Tag>::string_type;
103
+ using typename uri_base<Tag>::string_type;
104
104
using uri_base<Tag>::operator ==;
105
105
using uri_base<Tag>::operator !=;
106
106
basic_uri () : uri_base<Tag>() {}
You can’t perform that action at this time.
0 commit comments