$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [Boost-users] Default argument values with boost::function
From: Noah Roberts (roberts.noah_at_[hidden])
Date: 2009-04-30 13:37:51
Artyom wrote:
> Hi,
>
> Is there any way to set default argument values with Boost::Function?
In the standard way you would with the same function that doesn't have
default arguments:
boost::function<void()> f = boost::bind(&increment, 1);