mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-21 03:26:01 +00:00
20 lines
600 B
C++
20 lines
600 B
C++
//------------------------------------------------------------------------------
|
|
/*
|
|
Copyright (c) 2011-2013, OpenCoin, Inc.
|
|
*/
|
|
//==============================================================================
|
|
|
|
|
|
OrderBook::OrderBook (uint256 const& index,
|
|
uint160 const& currencyIn,
|
|
uint160 const& currencyOut,
|
|
uint160 const& issuerIn,
|
|
uint160 const& issuerOut)
|
|
: mBookBase (index)
|
|
, mCurrencyIn (currencyIn)
|
|
, mCurrencyOut (currencyOut)
|
|
, mIssuerIn (issuerIn)
|
|
, mIssuerOut (issuerOut)
|
|
{
|
|
}
|