$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [Boost-users] [bind] and [function] : question on binding member function
From: Ivan Kharin (korsar_at_[hidden])
Date: 2009-09-08 07:59:42
Add copy constructor:
B::B( const B& src )
: str( new std::string( *src.str ) )
{
}
-- Regards, Ivan Kharin