I want to use Boost::sginals but LATE/Lazy binding

Get answers to all your basic programming questions. No Ogre questions, please!
Post Reply
User avatar
ahmedali
Gnome
Posts: 302
Joined: Fri Feb 20, 2004 8:52 pm
Location: Lahore, Pakistan

I want to use Boost::sginals but LATE/Lazy binding

Post by ahmedali »

Is it possible to do a late binding of functions with boost::signals?? possibly with boost::bind or boost::function ?? without OVERHEAD??


Forexample i have created a bind object of a class::function and later i connect it with a signal. But i expect there would be no extra overheads.
cometeor
Gnoblar
Posts: 10
Joined: Wed Jan 13, 2010 8:11 am

Re: I want to use Boost::sginals but LATE/Lazy binding

Post by cometeor »

AFAIK, there is no overhead, just make sure the function object is still valid when connect.
Post Reply