$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [Boost-users] mpi/serialization: string serialization and const char*
From: François Mauger (mauger_at_[hidden])
Date: 2011-01-02 12:24:52
Hi Hicham
>>>Hicham Mouline a écrit :
>
> hello,
>
>
>
> Including
>
> I mpi::broadcast an object. Its serialization method is split into a
> save() and a load(). In the save(), I send:
>
>
>
> ar << "fixed_params";
>
>
>
what about
ar << std::string("fixed_params"); ?
Hope it helps.
regards
frc
--