Files
UoL/CM2005 Object Oriented Programming/Topic 2/2.5.5/OrderBookEntry.cpp
2021-05-21 23:15:27 -05:00

18 lines
267 B
C++

#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}
{
}