Use of a function object.
Supporting Design by Contract in C++
by David Maley and Ivor Spence
Listing 5. Use of a function object.
Complex Complex::operator/(const double& d)
{
OperatorDivide dbc(this, &Complex::operatorDivide_body);
return dbc(d);
}
About the Authors
David Maley is with St. Mary's University College, Belfast. He can be contacted at [email protected].
Ivor Spence is with Queen's University of Belfast. He can be contacted at [email protected].