This commit is contained in:
jed
2012-08-23 16:30:15 -07:00
parent 27490e1f0b
commit 345c00e569
3 changed files with 6 additions and 1 deletions

View File

@@ -192,6 +192,7 @@
<ClInclude Include="src\CanonicalTXSet.h" />
<ClInclude Include="src\Config.h" />
<ClInclude Include="src\ConnectionPool.h" />
<ClInclude Include="src\Contract.h" />
<ClInclude Include="src\Conversion.h" />
<ClInclude Include="src\HashedObject.h" />
<ClInclude Include="src\HttpReply.h" />

View File

@@ -524,6 +524,9 @@
<ClInclude Include="src\OrderBook.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="src\Contract.h">
<Filter>Header Files</Filter>
</ClInclude>
</ItemGroup>
<ItemGroup>
<None Include="wallet.xml" />

View File

@@ -17,7 +17,8 @@ class OrderBook
public:
typedef boost::shared_ptr<OrderBook> pointer;
// returns NULL if ledgerEntry doesn't point to an orderbook
// returns NULL if ledgerEntry doesn't point to an order
// if ledgerEntry is an Order it creates the OrderBook this order would live in
static OrderBook::pointer newOrderBook(SerializedLedgerEntry::pointer ledgerEntry);
uint256& getBookBase(){ return(mBookBase); }