mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Modularize app/tx:
* Move LedgerView declaration * Move CrossType * Move Clock declaration * Move Quality to protocol/ * Move Amounts to protocol/ * Move book to tx/impl * Remove 0.27 legacy support * Remove unused AmountType * Remove core namespace * Use STAmount
This commit is contained in:
@@ -19,14 +19,30 @@
|
||||
|
||||
#include <BeastConfig.h>
|
||||
|
||||
#include <ripple/app/book/tests/OfferStream.test.cpp>
|
||||
#include <ripple/app/book/tests/Quality.test.cpp>
|
||||
#include <ripple/app/book/tests/Taker.test.cpp>
|
||||
#include <ripple/app/ledger/InboundLedger.cpp>
|
||||
#include <ripple/app/paths/RippleState.cpp>
|
||||
#include <ripple/app/peers/UniqueNodeList.cpp>
|
||||
#include <ripple/app/transactors/Transactor.h>
|
||||
#include <ripple/app/tx/TransactionMaster.cpp>
|
||||
#include <ripple/app/tx/Transaction.cpp>
|
||||
#include <ripple/app/tx/TransactionEngine.cpp>
|
||||
#include <ripple/app/tx/TransactionMeta.cpp>
|
||||
|
||||
#include <ripple/app/tx/impl/InboundTransactions.cpp>
|
||||
#include <ripple/app/tx/impl/LocalTxs.cpp>
|
||||
#include <ripple/app/tx/impl/TransactionMaster.cpp>
|
||||
#include <ripple/app/tx/impl/Transaction.cpp>
|
||||
#include <ripple/app/tx/impl/TransactionEngine.cpp>
|
||||
#include <ripple/app/tx/impl/TransactionMeta.cpp>
|
||||
#include <ripple/app/tx/impl/TransactionAcquire.cpp>
|
||||
#include <ripple/app/tx/impl/Transactor.cpp>
|
||||
#include <ripple/app/tx/impl/BookTip.cpp>
|
||||
#include <ripple/app/tx/impl/OfferStream.cpp>
|
||||
#include <ripple/app/tx/impl/Taker.cpp>
|
||||
|
||||
#include <ripple/app/tx/impl/Change.cpp>
|
||||
#include <ripple/app/tx/impl/CancelOffer.cpp>
|
||||
#include <ripple/app/tx/impl/Payment.cpp>
|
||||
#include <ripple/app/tx/impl/SetRegularKey.cpp>
|
||||
#include <ripple/app/tx/impl/SetAccount.cpp>
|
||||
#include <ripple/app/tx/impl/SetTrust.cpp>
|
||||
#include <ripple/app/tx/impl/CreateOffer.cpp>
|
||||
#include <ripple/app/tx/impl/CreateTicket.cpp>
|
||||
#include <ripple/app/tx/impl/CancelTicket.cpp>
|
||||
#include <ripple/app/tx/tests/OfferStream.test.cpp>
|
||||
#include <ripple/app/tx/tests/Taker.test.cpp>
|
||||
|
||||
@@ -21,9 +21,6 @@
|
||||
|
||||
#include <ripple/app/ledger/InboundLedgers.cpp>
|
||||
#include <ripple/app/ledger/LedgerHistory.cpp>
|
||||
#include <ripple/app/tx/TransactionAcquire.cpp>
|
||||
#include <ripple/app/tx/LocalTxs.cpp>
|
||||
#include <ripple/app/tx/InboundTransactions.cpp>
|
||||
#include <ripple/app/misc/NetworkOPs.cpp>
|
||||
#include <ripple/app/misc/impl/AccountTxPaging.cpp>
|
||||
#include <ripple/app/misc/tests/AccountTxPaging.test.cpp>
|
||||
|
||||
@@ -18,18 +18,3 @@
|
||||
//==============================================================================
|
||||
|
||||
#include <BeastConfig.h>
|
||||
|
||||
#include <ripple/app/book/impl/BookTip.cpp>
|
||||
#include <ripple/app/book/impl/OfferStream.cpp>
|
||||
#include <ripple/app/book/impl/Quality.cpp>
|
||||
#include <ripple/app/book/impl/Taker.cpp>
|
||||
#include <ripple/app/transactors/Transactor.cpp>
|
||||
#include <ripple/app/transactors/Change.cpp>
|
||||
#include <ripple/app/transactors/CancelOffer.cpp>
|
||||
#include <ripple/app/transactors/Payment.cpp>
|
||||
#include <ripple/app/transactors/SetRegularKey.cpp>
|
||||
#include <ripple/app/transactors/SetAccount.cpp>
|
||||
#include <ripple/app/transactors/SetTrust.cpp>
|
||||
#include <ripple/app/transactors/CreateOffer.cpp>
|
||||
#include <ripple/app/transactors/CreateTicket.cpp>
|
||||
#include <ripple/app/transactors/CancelTicket.cpp>
|
||||
|
||||
@@ -1,28 +0,0 @@
|
||||
//------------------------------------------------------------------------------
|
||||
/*
|
||||
This file is part of rippled: https://github.com/ripple/rippled
|
||||
Copyright (c) 2012, 2013 Ripple Labs 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.
|
||||
*/
|
||||
//==============================================================================
|
||||
|
||||
#include <BeastConfig.h>
|
||||
|
||||
#include <ripple/legacy/0.27/book/impl/BookTip27.cpp>
|
||||
#include <ripple/legacy/0.27/book/impl/OfferStream27.cpp>
|
||||
#include <ripple/legacy/0.27/book/impl/Quality27.cpp>
|
||||
#include <ripple/legacy/0.27/book/impl/Taker27.cpp>
|
||||
#include <ripple/legacy/0.27/CreateOffer27.cpp>
|
||||
#include <ripple/legacy/0.27/Emulate027.cpp>
|
||||
|
||||
@@ -27,6 +27,7 @@
|
||||
#include <ripple/protocol/impl/HashPrefix.cpp>
|
||||
#include <ripple/protocol/impl/Indexes.cpp>
|
||||
#include <ripple/protocol/impl/LedgerFormats.cpp>
|
||||
#include <ripple/protocol/impl/Quality.cpp>
|
||||
#include <ripple/protocol/impl/RippleAddress.cpp>
|
||||
#include <ripple/protocol/impl/Serializer.cpp>
|
||||
#include <ripple/protocol/impl/SField.cpp>
|
||||
@@ -50,8 +51,10 @@
|
||||
#include <ripple/protocol/impl/STVar.cpp>
|
||||
#include <ripple/protocol/impl/STVector256.cpp>
|
||||
|
||||
|
||||
#include <ripple/protocol/tests/BuildInfo.test.cpp>
|
||||
#include <ripple/protocol/tests/Issue.test.cpp>
|
||||
#include <ripple/protocol/tests/Quality.test.cpp>
|
||||
#include <ripple/protocol/tests/RippleAddress.test.cpp>
|
||||
#include <ripple/protocol/tests/Serializer.test.cpp>
|
||||
#include <ripple/protocol/tests/STAmount.test.cpp>
|
||||
|
||||
Reference in New Issue
Block a user