Add using a header and cpp file
This commit is contained in:
@ -0,0 +1,18 @@
|
||||
#include "OrderBookEntry.h"
|
||||
|
||||
OrderBookEntry::OrderBookEntry
|
||||
(
|
||||
double price,
|
||||
double amount,
|
||||
std::string timestamp,
|
||||
std::string product,
|
||||
OrderBookType orderType
|
||||
)
|
||||
:
|
||||
price{price},
|
||||
amount{amount},
|
||||
timestamp{timestamp},
|
||||
product{product},
|
||||
orderType{orderType}
|
||||
{
|
||||
}
|
||||
Reference in New Issue
Block a user