Update implemented toString function

This commit is contained in:
Lev
2021-06-12 18:53:16 -05:00
parent 3f8d3800dc
commit 311261ba04

View File

@ -0,0 +1,21 @@
#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!";
}