mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-20 11:05:54 +00:00
74 lines
3.0 KiB
C++
74 lines
3.0 KiB
C++
//------------------------------------------------------------------------------
|
|
/*
|
|
Copyright (c) 2011-2013, OpenCoin, Inc.
|
|
|
|
Permission to use, copy, modify, and/or distribute this software for any
|
|
purpose with or without fee is hereby granted, provided that the above
|
|
copyright notice and this permission notice appear in all copies.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|
|
//==============================================================================
|
|
|
|
/** Add this to get the @ref ripple_client module.
|
|
|
|
@file ripple_client.cpp
|
|
@ingroup ripple_client
|
|
*/
|
|
|
|
#include <set>
|
|
|
|
#include <boost/unordered_set.hpp>
|
|
#include <boost/asio.hpp>
|
|
#include <boost/asio/ssl.hpp>
|
|
|
|
#include "ripple_client.h"
|
|
|
|
#include "../ripple_basics/ripple_basics.h"
|
|
|
|
#include "../ripple_data/ripple_data.h"
|
|
|
|
#include "src/cpp/ripple/ripple_InfoSub.h"
|
|
|
|
// Order and indentation reflect the hierarchy of dependencies
|
|
// VFALCO NOTE Don't add anything here!!!
|
|
#include "src/cpp/ripple/ripple_HashedObject.h"
|
|
#include "src/cpp/ripple/ripple_SHAMapItem.h"
|
|
#include "src/cpp/ripple/ripple_SHAMapNode.h"
|
|
#include "src/cpp/ripple/ripple_SHAMapAddNode.h"
|
|
#include "src/cpp/ripple/ripple_SHAMapMissingNode.h"
|
|
#include "src/cpp/ripple/ripple_SHAMapTreeNode.h"
|
|
#include "src/cpp/ripple/ripple_SHAMapSyncFilter.h"
|
|
#include "src/cpp/ripple/ripple_SHAMap.h"
|
|
#include "src/cpp/ripple/ripple_SerializedTransaction.h"
|
|
#include "src/cpp/ripple/ripple_SerializedLedger.h"
|
|
#include "src/cpp/ripple/TransactionMeta.h"
|
|
#include "src/cpp/ripple/Transaction.h"
|
|
#include "src/cpp/ripple/ripple_AccountState.h"
|
|
#include "src/cpp/ripple/ripple_NicknameState.h"
|
|
#include "src/cpp/ripple/Ledger.h"
|
|
#include "src/cpp/ripple/LedgerEntrySet.h"
|
|
#include "src/cpp/ripple/TransactionEngine.h"
|
|
#include "src/cpp/ripple/ripple_LoadManager.h"
|
|
#include "src/cpp/ripple/ripple_Peer.h"
|
|
#include "src/cpp/ripple/ripple_PeerSet.h"
|
|
#include "src/cpp/ripple/ripple_LedgerAcquire.h"
|
|
#include "src/cpp/ripple/ripple_LedgerHistory.h"
|
|
#include "src/cpp/ripple/ripple_CanonicalTXSet.h"
|
|
#include "src/cpp/ripple/LedgerMaster.h"
|
|
#include "src/cpp/ripple/ripple_InfoSub.h"
|
|
#include "src/cpp/ripple/SerializedValidation.h"
|
|
#include "src/cpp/ripple/LedgerProposal.h"
|
|
#include "src/cpp/ripple/ripple_AcceptedLedgerTx.h"
|
|
#include "src/cpp/ripple/NetworkOPs.h"
|
|
#include "src/cpp/ripple/ripple_IApplication.h"
|
|
|
|
#include "src/cpp/ripple/ripple_InfoSub.cpp"
|
|
//#include "src/cpp/ripple/NetworkOPs.cpp"
|