$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Alan Gutierrez (ajglist_at_[hidden])
Date: 2003-02-09 15:24:02
Has there been any consderation given to the use of named parameters
with boost::format?
use boost::format;
std::cout << format ("%first-name% %last-name%")
% format::arg("first-name", "Alan")
% format::arg("last-name", "Gutierrez")
<< std::endl;
It would not be terribly difficult to implement.
-- Alan Gutierrez - ajglist_at_[hidden]