mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
39 lines
989 B
C++
39 lines
989 B
C++
//------------------------------------------------------------------------------
|
|
/*
|
|
Copyright (c) 2011-2013, OpenCoin, Inc.
|
|
*/
|
|
//==============================================================================
|
|
|
|
#include "BeastConfig.h"
|
|
|
|
#include "ripple_app.h"
|
|
|
|
namespace ripple
|
|
{
|
|
|
|
#include "paths/ripple_RippleState.cpp"
|
|
|
|
#include "tx/PaymentTransactor.cpp"
|
|
#include "tx/RegularKeySetTransactor.cpp"
|
|
#include "tx/TransactionCheck.cpp"
|
|
#include "tx/TransactionMaster.cpp"
|
|
#include "tx/TransactionQueue.cpp"
|
|
#include "tx/TrustSetTransactor.cpp"
|
|
#include "tx/Transaction.cpp"
|
|
#include "tx/TransactionEngine.cpp"
|
|
#include "tx/TransactionMeta.cpp"
|
|
#include "tx/Transactor.cpp"
|
|
|
|
#ifdef _MSC_VER
|
|
# pragma warning (push)
|
|
# pragma warning (disable: 4244) // conversion, possible loss of data
|
|
# pragma warning (disable: 4018) // signed/unsigned mismatch
|
|
#endif
|
|
#include "peers/ripple_UniqueNodeList.cpp"
|
|
#include "ledger/ripple_InboundLedger.cpp"
|
|
#ifdef _MSC_VER
|
|
# pragma warning (pop)
|
|
#endif
|
|
|
|
}
|