$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Duane Murphy (duanemurphy_at_[hidden])
Date: 2003-01-04 00:03:52
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