
5 Dec
2008
5 Dec
'08
2:23 a.m.
On Thu, Dec 4, 2008 at 7:58 PM, Steven Watanabe
AMDG
Jason Cipriani wrote:
How do I represent "const Object *" as a shared_ptr? Using "const shared_ptr<Object>" is not right, it makes the shared_ptr const, not the Object.
shared_ptr<const Object>
Oh right. Thanks! Jason