From e4df71bccec4dc8f1b7341dbb244c6002e01c111 Mon Sep 17 00:00:00 2001 From: Lev Date: Fri, 11 Jun 2021 13:47:18 -0500 Subject: [PATCH] Update changed order of parameters --- CM2005 Object Oriented Programming/Topic 4/4.4.5/CSVReader.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CM2005 Object Oriented Programming/Topic 4/4.4.5/CSVReader.h b/CM2005 Object Oriented Programming/Topic 4/4.4.5/CSVReader.h index bed9717..12084ce 100644 --- a/CM2005 Object Oriented Programming/Topic 4/4.4.5/CSVReader.h +++ b/CM2005 Object Oriented Programming/Topic 4/4.4.5/CSVReader.h @@ -10,10 +10,10 @@ public: CSVReader(); static std::vector readCSV(std::string csvFile); static std::vector tokenise(std::string csvLine, char separator); - static OrderBookEntry stringsToOBE(std::string product, - std::string price, + static OrderBookEntry stringsToOBE(std::string price, std::string amount, std::string timestamp, + std::string product, OrderBookType orderType); private: