From Mechanism to Method: Function Follows Form
By Kelvin Henney, November 01, 2000
Of all the features of C++ that can affect source code readability, operator overloading is one of the most powerful. Operator overloading can render otherwise well-written code obscure; on the other hand, it makes possible many important idioms - smart pointers, function objects, and iterators, to name a few. Kevlin Henney shows us another good application of operator overloading: a remember_function that bundles a target object together with a member function pointer for later callback
November 2000 C++ Experts Forum/From Mechanism to Method/Listing 2
class function_ptr
{
public:
function_ptr();
function_ptr(const function_ptr &other);
template<typename nullary_function>
function_ptr(nullary_function function);
~function_ptr();
function_ptr &operator=(const function_ptr &rhs)
void operator()() const;
...
};