21 lines
247 B
C++
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!";
|
|
} |