0
votes
2answers
67 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 …
0
votes
2answers
143 views
C# equivalent of C++ mem_fun?
I'd like to do something like the following in C#:
class Container {
//...
public void ForEach(Action method) {
foreach (MyClass myObj in sequence) myObj.method();
…
2
votes
3answers
1k views
How do I use std::tr1::mem_fun in Visual Studio 2008 SP1?
The VS2008 SP1 documentation talks about std::tr1::mem_fun.
So why, when I try and use std::tr1::mem_fun, why do I get this compile error?:
'mem_fun' : is not a member of 'std::tr1'
At the same …
