$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Christian Larsen (contact_at_[hidden])
Date: 2008-08-23 06:25:43
Olaf Peter skrev:
> the following code doesn't compile:
[SNIP]
> m_f.fn = bind( bar::write, this); // L20
You need to take the address of bar::write, so this should work:
m_f.fn = bind( &bar::write, this);
Best regards,
Christian