Add Initial commit

This commit is contained in:
Lev
2021-07-01 15:27:04 -05:00
parent e95d11f309
commit 21d82edc88
13 changed files with 1026221 additions and 0 deletions

View File

@ -0,0 +1,40 @@
#pragma once
#include <string>
#include <map>
#include "OrderBookEntry.h"
#include <iostream>
class Wallet
{
public:
Wallet();
/** insert currency to the wallet */
void insertCurrency(std::string type, double amount);
/** remove currency from the wallet */
bool removeCurrency(std::string type, double amount);
/** check if the wallet contains this much currency or more */
bool containsCurrency(std::string type, double amount);
/** checks if the wallet can cope with this ask or bid.*/
bool canFulfillOrder(OrderBookEntry order);
/** update the contents of the wallet
* assumes the order was made by the owner of the wallet
*/
void processSale(OrderBookEntry& sale);
/** generate a string representation of the wallet */
std::string toString();
friend std::ostream& operator<<(std::ostream& os, Wallet& wallet);
private:
std::map<std::string,double> currencies;
};