15 Jul
2009
15 Jul
'09
1:40 p.m.
On Wed, Jul 15, 2009 at 4:58 AM, Rudi Dittrich
I tried to use a local class as a callback function registering with a boost signal.
"Beware that a local class cannot be a valid template argument." from http://www.research.att.com/~bs/glossary.html, search for "local class". So you can't put it in a std::vector for example, and since bind is template-based, can't use it with bind either. Simply move it out of the function. --DD