mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Make all include paths relative to a root directory:
* Better include path support in the VSProject scons tool. * Various manual fixes to include paths.
This commit is contained in:
@@ -25,11 +25,11 @@
|
||||
|
||||
#include <boost/smart_ptr.hpp>
|
||||
|
||||
#include "../../beast/beast/chrono/abstract_clock.h"
|
||||
#include "../../beast/beast/chrono/chrono_io.h"
|
||||
#include "../../beast/beast/Insight.h"
|
||||
#include "../../beast/beast/container/hardened_hash.h"
|
||||
#include "UnorderedContainers.h"
|
||||
#include <beast/chrono/abstract_clock.h>
|
||||
#include <beast/chrono/chrono_io.h>
|
||||
#include <beast/Insight.h>
|
||||
#include <beast/container/hardened_hash.h>
|
||||
#include <ripple/common/UnorderedContainers.h>
|
||||
|
||||
namespace ripple {
|
||||
|
||||
|
||||
@@ -20,9 +20,9 @@
|
||||
#ifndef RIPPLE_COMMON_MULTISOCKET_H_INCLUDED
|
||||
#define RIPPLE_COMMON_MULTISOCKET_H_INCLUDED
|
||||
|
||||
#include "../../beast/beast/asio/abstract_socket.h"
|
||||
#include "../../beast/beast/net/IPEndpoint.h"
|
||||
#include "../../beast/modules/beast_asio/protocol/HandshakeDetectLogicPROXY.h"
|
||||
#include <beast/asio/abstract_socket.h>
|
||||
#include <beast/net/IPEndpoint.h>
|
||||
#include <modules/beast_asio/protocol/HandshakeDetectLogicPROXY.h>
|
||||
|
||||
#include <boost/asio/ip/tcp.hpp>
|
||||
|
||||
|
||||
@@ -23,8 +23,8 @@
|
||||
#include <vector>
|
||||
#include <functional>
|
||||
|
||||
#include "../../beast/beast/boost/ErrorCode.h"
|
||||
#include "../../beast/beast/net/IPEndpoint.h"
|
||||
#include <beast/boost/ErrorCode.h>
|
||||
#include <beast/net/IPEndpoint.h>
|
||||
|
||||
namespace ripple {
|
||||
|
||||
|
||||
@@ -22,8 +22,8 @@
|
||||
|
||||
#include <boost/asio/io_service.hpp>
|
||||
|
||||
#include "../../beast/beast/utility/Journal.h"
|
||||
#include "Resolver.h"
|
||||
#include <beast/utility/Journal.h>
|
||||
#include <ripple/common/Resolver.h>
|
||||
|
||||
namespace ripple {
|
||||
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
#ifndef RIPPLE_COMMON_SSLCONTEXT_H_INCLUDED
|
||||
#define RIPPLE_COMMON_SSLCONTEXT_H_INCLUDED
|
||||
|
||||
#include "../../beast/modules/beast_asio/basics/SSLContext.h"
|
||||
#include <modules/beast_asio/basics/SSLContext.h>
|
||||
|
||||
#include <string>
|
||||
|
||||
|
||||
@@ -20,10 +20,10 @@
|
||||
#ifndef RIPPLE_TAGGEDCACHE_H_INCLUDED
|
||||
#define RIPPLE_TAGGEDCACHE_H_INCLUDED
|
||||
|
||||
#include "../../beast/beast/chrono/abstract_clock.h"
|
||||
#include "../../beast/beast/chrono/chrono_io.h"
|
||||
#include "../../beast/beast/Insight.h"
|
||||
#include "../../beast/beast/container/hardened_hash.h"
|
||||
#include <beast/chrono/abstract_clock.h>
|
||||
#include <beast/chrono/chrono_io.h>
|
||||
#include <beast/Insight.h>
|
||||
#include <beast/container/hardened_hash.h>
|
||||
|
||||
#include <boost/smart_ptr.hpp>
|
||||
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
#ifndef RIPPLE_UNORDERED_CONTAINERS_H
|
||||
#define RIPPLE_UNORDERED_CONTAINERS_H
|
||||
|
||||
#include "../../beast/beast/container/hash_append.h"
|
||||
#include <beast/container/hash_append.h>
|
||||
|
||||
#include <unordered_map>
|
||||
#include <unordered_set>
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
#ifndef RIPPLE_BYTE_VIEW_H_INCLUDED
|
||||
#define RIPPLE_BYTE_VIEW_H_INCLUDED
|
||||
|
||||
#include "../../beast/beast/container/buffer_view.h"
|
||||
#include <beast/container/buffer_view.h>
|
||||
|
||||
#include <cstdint>
|
||||
|
||||
|
||||
@@ -17,10 +17,10 @@
|
||||
*/
|
||||
//==============================================================================
|
||||
|
||||
#include "../KeyCache.h"
|
||||
#include <ripple/common/KeyCache.h>
|
||||
|
||||
#include "../../beast/beast/unit_test/suite.h"
|
||||
#include "../../beast/beast/chrono/manual_clock.h"
|
||||
#include <beast/unit_test/suite.h>
|
||||
#include <beast/chrono/manual_clock.h>
|
||||
|
||||
namespace ripple {
|
||||
|
||||
|
||||
@@ -17,11 +17,11 @@
|
||||
*/
|
||||
//==============================================================================
|
||||
|
||||
#include "MultiSocketType.h"
|
||||
#include <ripple/common/impl/MultiSocketType.h>
|
||||
|
||||
#include "../RippleSSLContext.h"
|
||||
#include <ripple/common/RippleSSLContext.h>
|
||||
|
||||
#include "../../beast/beast/unit_test/suite.h"
|
||||
#include <beast/unit_test/suite.h>
|
||||
|
||||
#include <cassert>
|
||||
|
||||
|
||||
@@ -20,13 +20,13 @@
|
||||
#ifndef RIPPLE_COMMON_MULTISOCKETTYPE_H_INCLUDED
|
||||
#define RIPPLE_COMMON_MULTISOCKETTYPE_H_INCLUDED
|
||||
|
||||
#include "../MultiSocket.h"
|
||||
#include <ripple/common/MultiSocket.h>
|
||||
|
||||
#include "../../../beast/beast/boost/get_pointer.h"
|
||||
#include "../../../beast/beast/asio/wrap_handler.h"
|
||||
#include "../../../beast/beast/asio/placeholders.h"
|
||||
#include <beast/boost/get_pointer.h>
|
||||
#include <beast/asio/wrap_handler.h>
|
||||
#include <beast/asio/placeholders.h>
|
||||
|
||||
#include "../../../beast/beast/cxx14/type_traits.h"
|
||||
#include <beast/cxx14/type_traits.h>
|
||||
|
||||
#include <cassert>
|
||||
|
||||
|
||||
@@ -17,8 +17,8 @@
|
||||
*/
|
||||
//==============================================================================
|
||||
|
||||
#include "../../beast/modules/beast_asio/beast_asio.h"
|
||||
#include "../../beast/beast/asio/IPAddressConversion.h"
|
||||
#include <modules/beast_asio/beast_asio.h>
|
||||
#include <beast/asio/IPAddressConversion.h>
|
||||
|
||||
#include <atomic>
|
||||
#include <deque>
|
||||
@@ -26,7 +26,7 @@
|
||||
|
||||
#include "boost/asio.hpp"
|
||||
|
||||
#include "../ResolverAsio.h"
|
||||
#include <ripple/common/ResolverAsio.h>
|
||||
|
||||
#include <cassert>
|
||||
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
*/
|
||||
//==============================================================================
|
||||
|
||||
#include "../RippleSSLContext.h"
|
||||
#include <ripple/common/RippleSSLContext.h>
|
||||
|
||||
#include <cstdint>
|
||||
#include <sstream>
|
||||
|
||||
@@ -17,10 +17,10 @@
|
||||
*/
|
||||
//==============================================================================
|
||||
|
||||
#include "../TaggedCache.h"
|
||||
#include <ripple/common/TaggedCache.h>
|
||||
|
||||
#include "../../beast/beast/unit_test/suite.h"
|
||||
#include "../../beast/beast/chrono/manual_clock.h"
|
||||
#include <beast/unit_test/suite.h>
|
||||
#include <beast/chrono/manual_clock.h>
|
||||
|
||||
namespace ripple {
|
||||
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
#ifndef RIPPLE_COMMON_JSONRPC_FIELDS_H_INCLUDED
|
||||
#define RIPPLE_COMMON_JSONRPC_FIELDS_H_INCLUDED
|
||||
|
||||
#include "../json/ripple_json.h"
|
||||
#include <ripple/json/ripple_json.h>
|
||||
|
||||
namespace ripple {
|
||||
namespace jss {
|
||||
|
||||
@@ -17,10 +17,10 @@
|
||||
*/
|
||||
//==============================================================================
|
||||
|
||||
#include "../../BeastConfig.h"
|
||||
#include <BeastConfig.h>
|
||||
|
||||
#include "impl/KeyCache.cpp"
|
||||
#include "impl/TaggedCache.cpp"
|
||||
#include "impl/ResolverAsio.cpp"
|
||||
#include "impl/MultiSocket.cpp"
|
||||
#include "impl/RippleSSLContext.cpp"
|
||||
#include <ripple/common/impl/KeyCache.cpp>
|
||||
#include <ripple/common/impl/TaggedCache.cpp>
|
||||
#include <ripple/common/impl/ResolverAsio.cpp>
|
||||
#include <ripple/common/impl/MultiSocket.cpp>
|
||||
#include <ripple/common/impl/RippleSSLContext.cpp>
|
||||
|
||||
@@ -20,8 +20,8 @@
|
||||
#ifndef RIPPLE_SECONDS_CLOCK_H_INCLUDED
|
||||
#define RIPPLE_SECONDS_CLOCK_H_INCLUDED
|
||||
|
||||
#include "../../beast/beast/chrono/abstract_clock.h"
|
||||
#include "../../beast/beast/chrono/basic_seconds_clock.h"
|
||||
#include <beast/chrono/abstract_clock.h>
|
||||
#include <beast/chrono/basic_seconds_clock.h>
|
||||
|
||||
#include <chrono>
|
||||
|
||||
|
||||
@@ -17,14 +17,14 @@
|
||||
*/
|
||||
//==============================================================================
|
||||
|
||||
#include "../../../beast/beast/unit_test/suite.h"
|
||||
#include <beast/unit_test/suite.h>
|
||||
|
||||
#include "../../../beast/beast/utility/noexcept.h"
|
||||
#include <beast/utility/noexcept.h>
|
||||
#include <algorithm>
|
||||
#include <cassert>
|
||||
#include <iostream>
|
||||
#include <iterator>
|
||||
#include "../../../beast/beast/cxx14/type_traits.h" // <type_traits>
|
||||
#include <beast/cxx14/type_traits.h> // <type_traits>
|
||||
#include <utility>
|
||||
#include <vector>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user