Files
UoL/CM2005 Object Oriented Programming/Topic 5/5.1.5/Wallet.cpp
2021-06-12 18:53:16 -05:00

21 lines
247 B
C++

#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!";
}