Subject: [Boost-users] boost shared_ptr with own dtor
From: Philipp Kraus (philipp.kraus_at_[hidden])
Date: 2012-12-08 10:58:25


Hello,

I'm using boost::shared_ptr for using a C pointer. The ctor and all functions are called without any problem, but I have got a problem with the dtor.
I need to call a C function on the dtor eg

cptr_close( mypointer )

How can I this used with boost::shared_ptr? I need the cptr_close call on the pointer member of the dtor on the shared_ptr.

Thanks a lot

Phil