Add no changed were required since the last changes were made

This commit is contained in:
Lev
2021-05-22 00:31:09 -05:00
parent 99f483085e
commit e764de4c10
6 changed files with 213 additions and 0 deletions

View File

@ -0,0 +1,26 @@
#pragma once
#include <string>
enum class OrderBookType
{
bid,
ask
};
class OrderBookEntry
{
public:
OrderBookEntry
(
double price,
double amount,
std::string timestamp,
std::string product,
OrderBookType orderType
);
double price;
double amount;
std::string timestamp;
std::string product;
OrderBookType orderType;
};