Update linearRegression to header file

This commit is contained in:
Lev
2021-06-13 17:56:00 -05:00
parent fdfd01b0f3
commit a202119969
3 changed files with 8 additions and 8 deletions

View File

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