$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Jamie Allsop (ja11sop_at_[hidden])
Date: 2008-02-06 05:38:21
Jim W wrote:
> I hope I'm not asking something obvious, but I was wondering if Boost format() has a wstring equivalent?
>
Yes, wformat, for example:
#include <boost::format.hpp>
boost::wformat SomeFormat( L"Some example string = %s" );
HTH,
Jamie