Re: [boost] bind, map and shared_ptr question

2003-05-14 Thread Giovanni Bajo
Terence Wilson <[EMAIL PROTECTED]> wrote: > I could use some help with bind syntax. I have a container: > > Class MyClass > { > public: > void foo(void); > } > > Std::map > > > I would like to construct a for_each loop with calls to foo for every > pointer to MyClass in the map. Help greatly appre

[boost] bind, map and shared_ptr question

2003-05-14 Thread Terence Wilson
I could use some help with bind syntax. I have a container: Class MyClass { public: void foo(void); } Std::map > I would like to construct a for_each loop with calls to foo for every pointer to MyClass in the map. Help greatly appreciated.