Tagged Questions

4
votes
3answers
171 views

storing mem_fun in a standard container

Is there a way to create a vector< mem_fun_t< ReturnType, MyClass > > ? The error i'm seeing is: error C2512: 'std::mem_fun1_t<_Result,_Ty,_Arg>' : no appropriate default ...
3
votes
1answer
327 views

C++ To call member function in for_each for items in the member container

If I have a class (that mimic some of STL's container) like this: class Elem { public: void prepare(); // do something on *this // ... }; class Selector { public: typedef vector<Elem ...
3
votes
3answers
1k views

referencing a member function with bind1st and mem_fun

I have a C++ class where I'm trying to use std::bind1st to bind a member function to the 'this' parameter. For example: class MyClass { public: void Foo() { using namespace std; ...
2
votes
4answers
213 views

How to have memfun with two parameters

I want to use this function "EnumWindows(EnumWindowsProc, NULL);". The EnumWindowsProc is a Callback function: BOOL CALLBACK EnumWindowsProc(HWND hwnd, LPARAM lParam); For this callback I want to ...
2
votes
3answers
3k 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 ...
1
vote
4answers
342 views

STL for_each complaining about argument list

As part of a homework assignment, we are supposed to map the occurrence of each character in a map. Our function is supposed to use std::for_each and pass in the character to be evaluated. My ...
1
vote
2answers
514 views

Using std::vector<T*>::push_back with std::mem_fun and std::bind1st

I'm trying to use std::vector<T*>::push_back with std::mem_fun and std::binder1st, but it doesnt seem to be feasible, can this be done? I've tried to exemplify with the code below. #include ...
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 ...
0
votes
2answers
135 views

std::mem_fun_ref problem: Works as functor broken when called as a member function

The problem is compiler errors with the code snippet below. Here's a very simple program to fill a list with random integers and increment each element. I use a std::for_each call to a functor to ...