#include "Wallet.h" Wallet::Wallet() { } void Wallet::insertCurrency(std::string type, double amount) { } bool Wallet::containsCurrency(std::string type, double amount) { return false; } std::string Wallet::toString() { return "Oink!"; }