What is the equivalent of a static_cast with boost::shared_ptr?
In other words, how do I have to rewrite the following
Base* b = new Base();
Derived* d = static_cast<Derived*>(b);
when using shared_ptr?
boost::shared_ptr<Base> b(new Base());
boost::shared_ptr<Derived> d = ???
Base *b = new Derived();? – legends2k Jan 11 '11 at 11:12