$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Thorsten Ottosen (nesotto_at_[hidden])
Date: 2002-10-08 15:53:37
Correction:
>typedef std::pair<int, int> point;
>std::list<point> point_list;
>set_cont(point_list) += ....
>
>Would this work?
will _only_ work as
set_cont( point_list ) += point(1,2), point(3,4);
regards
Thorsten