From dcf943bdfb977a4a5852ae15043f82b0e00787fe Mon Sep 17 00:00:00 2001 From: Lev Date: Fri, 11 Jun 2021 18:57:29 -0500 Subject: [PATCH] Update added arguments to matchAsksToBids --- CM2005 Object Oriented Programming/Topic 4/4.5.4/OrderBook.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CM2005 Object Oriented Programming/Topic 4/4.5.4/OrderBook.h b/CM2005 Object Oriented Programming/Topic 4/4.5.4/OrderBook.h index 82ca373..8e4d19e 100644 --- a/CM2005 Object Oriented Programming/Topic 4/4.5.4/OrderBook.h +++ b/CM2005 Object Oriented Programming/Topic 4/4.5.4/OrderBook.h @@ -20,7 +20,7 @@ class OrderBook * If no next timestamp is found, wraps to the start */ std::string getNextTime(std::string timestamp); void insertOrder(OrderBookEntry& order); - std::vector matchAsksToBids(); + std::vector matchAsksToBids(std::string product, std::string timestamp); static double getHighPrice(std::vector& orderList); static double getLowPrice(std::vector& orderList); private: