$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [Boost-users] Member-Function to String conversion.
From: Siegfried Kettlitz (siegfried.kettlitz_at_[hidden])
Date: 2008-11-03 10:46:43
> Then use a pointer to mem_fn for the bimap and not directly the function
> pointer.
That's not possible because when:
mem_fn a( &class::function );
mem_fn b( &class::function );
then a and b are different objects but internally point to the same function.