You can give the shared_ptr template a custom deleter function which has the signature
void Deleter( T* ptr);
for a boost::shared_ptr
So for Deleter you would do
boost::shared_ptr<T> ptrToT( new T, Deleter );
then in the body of Deleter:
void Deleter( T* ptr);
{
ptr->deleteMe();
// And make sure YOU ACTUALLY DELETE otherwise memory leak
(or do whatever else you need to
// do to release the resource)
delete ptr;
}
For your specific case when you need something simple (like ptr->deleteMe) see Greg's solution, its very nice.
