Exemple #1
0
		double operator+=(double& d, const Product& P) {
				d += P.cost() * P.quantity();
				return d;
		}