Update made tokenise public
This commit is contained in:
@ -8,11 +8,10 @@ class CSVReader
|
|||||||
{
|
{
|
||||||
public:
|
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);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
static std::vector<std::string> tokenise(std::string csvLine, char separator);
|
|
||||||
static OrderBookEntry stringsToOBE(std::vector<std::string> strings);
|
static OrderBookEntry stringsToOBE(std::vector<std::string> strings);
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user