in my code i would like boost::shared_ptr not to call delete but call ptr->deleteMe() instead.
Also i have a few C styled functions that return a ptr. Can i make it call lib_freeXYZ(ptr); instead of trying to delete?
|
|
|
|
|
|
|
Or how about using the stl to provide the wrapper functor - Doug T. description but without the custom caller.
|
||
|
|
|
You can give the shared_ptr template a custom deleter function which has the signature
for a boost::shared_ptr So for Deleter you would do
then in the body of Deleter:
For your specific case when you need something simple (like ptr->deleteMe) see Greg's solution, its very nice. |
|||
|
|
|
Doug T. answered your question nicely. I'll tell you about intrusive_ptr. Maybe you can use it in your project too. If you have some C library that has already reference counting, but you have to manually call those functions, you can use
Then you can just create objects from raw pointers of type
|
||
|
|
|
|
For the C-style data, do as @Doug. T suggested. For your class, why not do cleanup in a destructor? Even if this is including deleteMe() in the destructor. |
||||
|