Update implemented simuser logs

This commit is contained in:
Lev
2021-06-13 13:02:49 -05:00
parent 4b64ff2af7
commit 4f7a711942
4 changed files with 25 additions and 8 deletions

View File

@ -4,12 +4,14 @@ OrderBookEntry::OrderBookEntry( double _price,
double _amount,
std::string _timestamp,
std::string _product,
OrderBookType _orderType)
OrderBookType _orderType,
std::string _username)
: price(_price),
amount(_amount),
timestamp(_timestamp),
product(_product),
orderType(_orderType)
orderType(_orderType),
username(_username)
{
}