Add Bot.h and Bot.cpp
This commit is contained in:
@ -0,0 +1,15 @@
|
||||
#pragma once
|
||||
|
||||
#include "OrderBook.h"
|
||||
#include <vector>
|
||||
//#include "CSVReader.h"
|
||||
|
||||
class Bot
|
||||
{
|
||||
public:
|
||||
Bot(std::string filename);
|
||||
void Print(int intLimit);
|
||||
|
||||
private:
|
||||
std::vector<OrderBookEntry> orders;
|
||||
};
|
||||
Reference in New Issue
Block a user