diff --git a/CM2005 Object Oriented Programming/Midterm/Merkelrex-TradingBot/TradingBot.h b/CM2005 Object Oriented Programming/Midterm/Merkelrex-TradingBot/TradingBot.h index bf39771..a8189eb 100644 --- a/CM2005 Object Oriented Programming/Midterm/Merkelrex-TradingBot/TradingBot.h +++ b/CM2005 Object Oriented Programming/Midterm/Merkelrex-TradingBot/TradingBot.h @@ -1,11 +1,18 @@ #pragma once #include "MerkelMain.h" // required to interact with the order book, place bids, withdraw bids, place asks +#include "OrderBookEntry.h" // required to build vectors of this type +#include +#include +#include class TradingBot { public: TradingBot(MerkelMain* merkel); + void testFunc(); private: MerkelMain* merkel; + std::vector bookBids; + std::vector bookAsks; }; \ No newline at end of file