Tagged Questions

1
vote
2answers
1k views

mem_fun and bind1st problem

I've following class: class A { public: // ctr and etc ... A* clone(B* container); }; Now, I've a vector<A*> availableObjs populated already. I want to call clone on each of those, so and ...