Update changed order of parameters
This commit is contained in:
@ -10,10 +10,10 @@ public:
|
|||||||
CSVReader();
|
CSVReader();
|
||||||
static std::vector<OrderBookEntry> readCSV(std::string csvFile);
|
static std::vector<OrderBookEntry> readCSV(std::string csvFile);
|
||||||
static std::vector<std::string> tokenise(std::string csvLine, char separator);
|
static std::vector<std::string> tokenise(std::string csvLine, char separator);
|
||||||
static OrderBookEntry stringsToOBE(std::string product,
|
static OrderBookEntry stringsToOBE(std::string price,
|
||||||
std::string price,
|
|
||||||
std::string amount,
|
std::string amount,
|
||||||
std::string timestamp,
|
std::string timestamp,
|
||||||
|
std::string product,
|
||||||
OrderBookType orderType);
|
OrderBookType orderType);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|||||||
Reference in New Issue
Block a user