$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Aleksey Gurtovoy (alexy_at_[hidden])
Date: 2001-06-30 14:00:18
Samuel Krempp wrote:
> cout << format(" $1 $2 $3", x, y, z) << endl;
> cout << format(" $1 $2 $3") %x %y %z << endl;
Or may be this?
cout << format(" $1 $2 $3")(x)(y)(z) << endl;
Just a thought.
Aleksey