Files
UoL/CM2005 Object Oriented Programming/Midterm/Merkelrex-TradingBot/TradingBot.h
2021-07-01 17:00:25 -05:00

11 lines
224 B
C++

#pragma once
#include "MerkelMain.h" // required to interact with the order book, place bids, withdraw bids, place asks
class TradingBot
{
public:
TradingBot(MerkelMain* merkel);
private:
MerkelMain* merkel;
};