4 Jan
2003
4 Jan
'03
5:03 a.m.
Is there a class filling in the missing piece to the memory management puzzle for an auto_array? We have: scoped_ptr and scoped_array, shared_ptr and shared_arry, and auto_ptr. I would like to have an auto_array. Basically the feature that is missing is to create an array, initialize it and then transfer ownership as a way of managing exceptions during the initialization phase. For the time being I am using a shared_array. Thank for any suggestions. ...Duane