Or you could follow the COM-ish approach, and apply simple reference counting.
- When you create the object, give it a reference value of 1 instantly
- When anyone gets a copy of the pointer, they AddRef()
- When anyone gives up their copy of the pointer, they Release()
If the reference count hits 0, the object deletes itself.
Its ultimately what the auto_ptr shared_ptr does under the hood, but it gives you more control over whats going on, and in my experience easier to debug. (Its also very cross-platform).
I haven't given auto_ptr shared_ ptr too much of a chance in my development as yet, so that may serve your purposes perfectly.
