Exemple #1
0
//helper function
bool owes_fee(const Patron& p)
{
	if (p.get_fees_owed() > 0) 
		return true;
	return false;
}