Beispiel #1
0
Account Account::operator+(Account &item)
{
	Balance += item.GetBalance();
	item.SetBalance(0);

	return *this;
}