$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Peter Dimov (pdimov_at_[hidden])
Date: 2006-09-29 11:27:39
scott velasquez wrote:
>   void Add( boost::shared_ptr<OWidget>& widget )
>   {
>        mWidgets.pushback(widget);
>   }
Use a const reference:
void Add( boost::shared_ptr<OWidget> const & widget )
to enable conversions.