Boost logo

Boost :

From: Chris Just (cpjust_at_[hidden])
Date: 2005-02-13 00:25:42


Hi all,

I was wondering what the interest level is for a new auto pointer?
I know you've got a few different ones already, but I believe this one has some features that make
it quite unique. I based my AutoPtr from the STL auto_ptr and added some additional operator
overloads to make it easier to use. The biggest feature however, is that you can specify a custom
deletion function object.

The custom deletion function object allows you to delete in ways other than just 'delete ptr;'
For example, you can delete like this:
  delete [] ptr;
  ptr->Delete(); // Delete() calls: delete this;
  free( ptr );

If you want to take a look at it, it's available at:
http://groups.yahoo.com/group/boost/files/AutoPtr/

I'd like to hear your suggestions.

   Chris Just

                
__________________________________
Do you Yahoo!?
Read only the mail you want - Yahoo! Mail SpamGuard.
http://promotions.yahoo.com/new_mail


Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk