$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-users] Forwarding ctor calls in fusion sequence
From: Joel Falcou (joel.falcou_at_[hidden])
Date: 2012-05-07 09:11:45
Say I have a fusion vector of different types with a constructor taking
an int.
eg:
fusion::vector< std::vector<double>, std::vector<int> >
and I have such a type as a member of a class foo.
Now class foo has a constructor taking an int and I want to
forward this parameter to all constructor of my fusion sequence
member.
Is there a C++03 way to do this with minimal amount of copying ?