mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-19 18:45:52 +00:00
27 lines
600 B
C++
27 lines
600 B
C++
//------------------------------------------------------------------------------
|
|
/*
|
|
Copyright (c) 2011-2013, OpenCoin, Inc.
|
|
*/
|
|
//==============================================================================
|
|
|
|
/** Add this to get the @ref ripple_net module.
|
|
|
|
@file ripple_net.cpp
|
|
@ingroup ripple_net
|
|
*/
|
|
|
|
#include "BeastConfig.h"
|
|
|
|
#include "ripple_net.h"
|
|
|
|
// VFALCO TODO Remove this dependency on theConfig
|
|
#include "../modules/ripple_core/ripple_core.h" // theConfig for HttpsClient
|
|
|
|
namespace ripple
|
|
{
|
|
|
|
#include "basics/ripple_HTTPRequest.cpp"
|
|
#include "basics/ripple_HttpsClient.cpp"
|
|
|
|
}
|