#pragma once #include "OrderBookEntry.h" #include #include class CSVReader { public: CSVReader(); static std::vector readCSV(std::string csvFile); static std::vector tokenise(std::string csvLine, char separator); static OrderBookEntry stringsToOBE(std::string price, std::string amount, std::string timestamp, std::string product, OrderBookType OrderBookType); private: static OrderBookEntry stringsToOBE(std::vector strings); };