boost :: enlace y función de miembro de clase

Considere el siguiente ejemplo.

#include <iostream>
#include <algorithm>
#include <vector>

#include <boost/bind.hpp>

void
func(int e, int x) {
    std::cerr << "x is " << x << std::endl;
    std::cerr << "e is " << e << std::endl;
}

struct foo {
    std::vector<int> v;

    void calc(int x) {
        std::for_each(v.begin(), v.end(),
            boost::bind(func, _1, x));
    }

    void func2(int e, int x) {
        std::cerr << "x is " << x << std::endl;
        std::cerr << "e is " << e << std::endl;
    }

};

int
main()
{
    foo f;

    f.v.push_back(1);
    f.v.push_back(2);
    f.v.push_back(3);
    f.v.push_back(4);

    f.calc(1);

    return 0;
}

Todo funciona bien si usofunc() función. Pero en la aplicación de la vida real tengo que usar la función miembro de clase, es decir,foo::func2() en este ejemplo. ¿Cómo puedo hacer esto con boost :: bind?

Respuestas a la pregunta(4)

Su respuesta a la pregunta