Add implemented the MerkelMain into the main.cpp

This commit is contained in:
Lev
2021-05-21 23:38:08 -05:00
parent c7cdffc9ee
commit 4be6e913cb
6 changed files with 187 additions and 0 deletions

View File

@ -0,0 +1,11 @@
#include <iostream>
#include <string>
#include <vector>
#include "OrderBookEntry.h"
#include "MerkelMain.h"
int main()
{
MerkelMain app{} ;
app.printMenu();
}