Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit035da71

Browse files
committed
The great rename; fixes everything!
1 parentf7bcd7b commit035da71

File tree

216 files changed

+458
-457
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

216 files changed

+458
-457
lines changed

‎CMakeLists.txt‎

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
# Copyright (c) Dean Michael Berris 2010.
1+
# Copyright (c) Dean Michael Berris 2010.
2+
# Copyright (c) Google, Inc. 2012.
23
# Distributed under the Boost Software License, Version 1.0.
3-
#(See accompanying file LICENSE_1_0.txt or copy at
4-
#http://www.boost.org/LICENSE_1_0.txt)
4+
# (See accompanying file LICENSE_1_0.txt or copy at
5+
# http://www.boost.org/LICENSE_1_0.txt)
56

67
cmake_minimum_required(VERSION 2.8)
78
project(CPP-NETLIB)

‎include/network.hpp‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
// Author: Dean Michael Berris
1212
// Date: May 20, 2007
1313

14-
#include<boost/network/message.hpp>// message type implementation
15-
#include<boost/network/protocol.hpp>// protocols implementation
14+
#include<network/message.hpp>// message type implementation
15+
#include<network/protocol.hpp>// protocols implementation
1616

1717
#endif// __NETWORK_HPP__
1818

‎include/network/constants.ipp‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
// (See accompanying file LICENSE_1_0.txt or copy at
88
// http://www.boost.org/LICENSE_1_0.txt)
99

10-
#include<boost/network/constants.hpp>
11-
#include<boost/network/version.hpp>
10+
#include<network/constants.hpp>
11+
#include<network/version.hpp>
1212

1313
namespaceboost {namespacenetwork {
1414

‎include/network/include/http/client.hpp‎

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88
//
99
// This is the modular include file for using the HTTP Client
1010

11-
#include<boost/network/protocol/http/client.hpp>
12-
#include<boost/network/message/wrappers.hpp>
13-
#include<boost/network/protocol/http/message/directives.hpp>
14-
#include<boost/network/protocol/http/message/modifiers.hpp>
15-
#include<boost/network/protocol/http/message/wrappers.hpp>
16-
#include<boost/network/message/directives.hpp>
17-
#include<boost/network/message/transformers.hpp>
11+
#include<network/protocol/http/client.hpp>
12+
#include<network/message/wrappers.hpp>
13+
#include<network/protocol/http/message/directives.hpp>
14+
#include<network/protocol/http/message/modifiers.hpp>
15+
#include<network/protocol/http/message/wrappers.hpp>
16+
#include<network/message/directives.hpp>
17+
#include<network/message/transformers.hpp>
1818

1919
#endif// BOOST_NETWORK_INCLUDE_HTTP_CLIENT_HPP_
2020

‎include/network/include/http/server.hpp‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
// This is the modular include file for using the HTTP Client
1111

1212
#include<boost/asio/io_service.hpp>
13-
#include<boost/network/protocol/http/server.hpp>
14-
#include<boost/network/utils/thread_pool.hpp>
15-
#include<boost/network/detail/debug.hpp>
13+
#include<network/protocol/http/server.hpp>
14+
#include<network/utils/thread_pool.hpp>
15+
#include<network/detail/debug.hpp>
1616

1717
#endif

‎include/network/include/message.hpp‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
//
99
// This is the modular include file for using the basic message type
1010

11-
#include<boost/network/message.hpp>
11+
#include<network/message.hpp>
1212

1313
#endif// BOOST_NETWORK_INCLUDE_MESSAGE_HPP_
1414

‎include/network/message.hpp‎

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -8,24 +8,24 @@
88
// (See accompanying file LICENSE_1_0.txt or copy at
99
// http://www.boost.org/LICENSE_1_0.txt)
1010

11-
#include<boost/network/message_fwd.hpp>
12-
#include<boost/network/detail/directive_base.hpp>
13-
#include<boost/network/detail/wrapper_base.hpp>
14-
#include<boost/network/message/directives.hpp>
15-
#include<boost/network/message/wrappers.hpp>
16-
#include<boost/network/message/transformers.hpp>
11+
#include<network/message_fwd.hpp>
12+
#include<network/detail/directive_base.hpp>
13+
#include<network/detail/wrapper_base.hpp>
14+
#include<network/message/directives.hpp>
15+
#include<network/message/wrappers.hpp>
16+
#include<network/message/transformers.hpp>
1717

18-
#include<boost/network/message/modifiers/add_header.hpp>
19-
#include<boost/network/message/modifiers/remove_header.hpp>
20-
#include<boost/network/message/modifiers/clear_headers.hpp>
21-
#include<boost/network/message/modifiers/source.hpp>
22-
#include<boost/network/message/modifiers/destination.hpp>
23-
#include<boost/network/message/modifiers/body.hpp>
18+
#include<network/message/modifiers/add_header.hpp>
19+
#include<network/message/modifiers/remove_header.hpp>
20+
#include<network/message/modifiers/clear_headers.hpp>
21+
#include<network/message/modifiers/source.hpp>
22+
#include<network/message/modifiers/destination.hpp>
23+
#include<network/message/modifiers/body.hpp>
2424

25-
#include<boost/network/message/message.hpp>
25+
#include<network/message/message.hpp>
2626

2727
#ifdef BOOST_NETWORK_DEBUG
28-
#include<boost/network/message/message_concept.hpp>
28+
#include<network/message/message_concept.hpp>
2929
#endif
3030

3131
#endif// BOOST_NETWORK_MESSAGE_HPP_20111021

‎include/network/message/basic_message.hpp‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// (See accompanying file LICENSE_1_0.txt or copy at
88
// http://www.boost.org/LICENSE_1_0.txt)
99

10-
#include<boost/network/message_base.hpp>
10+
#include<network/message_base.hpp>
1111
#include<boost/scoped_ptr.hpp>
1212

1313
namespaceboost {namespacenetwork {
@@ -46,7 +46,7 @@ void swap(basic_storage_base & l, basic_storage_base & r);
4646
}/* boost*/
4747

4848
#ifdef BOOST_NETWORK_NO_LIB
49-
#include<boost/network/message/basic_message.ipp>
49+
#include<network/message/basic_message.ipp>
5050
#endif
5151

5252
#endif/* BOOST_NETWORK_MESSAGE_BASIC_MESSAGE_HPP_20110911*/

‎include/network/message/directives.hpp‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
#ifndef __NETWORK_MESSAGE_DIRECTIVES_HPP__
88
#define__NETWORK_MESSAGE_DIRECTIVES_HPP__
99

10-
#include<boost/network/message/directives/detail/string_directive.hpp>
11-
#include<boost/network/message/directives/header.hpp>
12-
#include<boost/network/message/directives/remove_header.hpp>
10+
#include<network/message/directives/detail/string_directive.hpp>
11+
#include<network/message/directives/header.hpp>
12+
#include<network/message/directives/remove_header.hpp>
1313

1414
namespaceboost {namespacenetwork {
1515

‎include/network/message/directives/detail/string_value.hpp‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
// (See accompanying file LICENSE_1_0.txt or copy at
77
// http://www.boost.org/LICENSE_1_0.txt)
88

9-
#include<boost/network/traits/string.hpp>
10-
#include<boost/network/support/is_async.hpp>
11-
#include<boost/network/support/is_sync.hpp>
9+
#include<network/traits/string.hpp>
10+
#include<network/support/is_async.hpp>
11+
#include<network/support/is_sync.hpp>
1212
#include<boost/thread/future.hpp>
1313
#include<boost/type_traits/is_same.hpp>
1414
#include<boost/mpl/if.hpp>

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp