$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: e r (erwann.rogard_at_[hidden])
Date: 2007-10-02 11:55:40
hi
for example, i use
boost::bind(
&A::f,
_1
)
in different parts of my code. how can i define an alias for this
expression?
i'm thinking of using something like
some_type* fo = new boost::bind(&A::f,_1);
and use *fo in place of boost::bind(...). is this crazy? what should
some_type be?