8 Sep
2007
8 Sep
'07
12:32 a.m.
On 9/7/07, Peter Dimov
Brad Ryder:
...
typedef boost::shared_ptr<A> shPtrA; typedef boost::shared_ptr<B> shPtrB; typedef boost::shared_ptr<C> shPtrC;
class A {
void AddChild(shPtrA& child);
How about
void AddChild(shPtrA const& child);
? _______________________________________________ Boost-users mailing list Boost-users@lists.boost.org http://lists.boost.org/mailman/listinfo.cgi/boost-users
Peter, Thanks for helping me out here. You can see in my previous post, I am still having difficulty. Brad