$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Thorsten Ottosen (nesotto_at_[hidden])
Date: 2004-09-24 16:58:42
"Reece Dunn" <msclrhd_at_[hidden]> wrote in message
news:41549378.5060205_at_hotmail.com...
| [2] The direct result of not supporting [1] is that you cannot utilize
| Roland Richter's usage:
|
| std::list<char> cl = lexical_cast< std::list<char> >( "[ a, b, c ]" );
just a remark: this can be done with boost.assign:
std::list<char> cl = list_of('a')('b')('c');
br
Thorsten