Files
UoL/CM2005 Object Oriented Programming/Topic 4/4.1.3/OrderBook.h

17 lines
495 B
C++

#pragma once
#include "OrderBookEntry.h"
#include "CSVReader.h"
#include <string>
#include <vector>
class OrderBook
{
public:
/* Construct, reading a csv data file */
OrderBook(std::string filename);
/* return vector of all known products in the dataset */
std::vector<std::string> getKnownProducts();
/* return vector of Orders according to the sent filters */
std::vector<OrderBookEntry> getOrders(OrderBookType type, std::string product, std::string timestamp);
};