From: Thorsten Ottosen (thorsten.ottosen_at_[hidden])
Date: 2007-11-21 16:31:19


chun ping wang skrev:
> Hi, since ptr_vector are non copyable,

remark: they will be in 1.35

> how would i got baout making
> assignment from one ptr_vector to another..
>
> i.e. ptr_vector<Foo> t;
> ptr_vector<Foo> t2;
> // some coding.
> t = t2;

t = t2.clone();

-Thorsten