|
Boost Users : |
Subject: [Boost-users] shared_ptr and signals
From: James C. Sutherland (James.Sutherland_at_[hidden])
Date: 2008-12-30 12:28:08
Is it possible to use a shared_ptr object in a signal?
I want something like
struct A{
...
void operator()(){ ... }
...
};
typedef boost::signal<void()> Signal;
Signal mySignal;
boost::shared_ptr<A> a( new A() );
mySignal.connect(a);
The trouble seems to be getting the signal to dereference the pointer
when the callback is made...
Any tips?
James
Boost-users list run by williamkempf at hotmail.com, kalb at libertysoft.com, bjorn.karlsson at readsoft.com, gregod at cs.rpi.edu, wekempf at cox.net