$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-users] from a variant to class with members templated over the variant types
From: Olivier Tournaire (olitour_at_[hidden])
Date: 2011-09-21 08:44:36
Hi all,
I am not sure if the title is self explanatory, so, let me show an example
of the goal.
I have:
variant<type1, type2, type3> v;
I want:
struct {
anobject<type1> _type1_object;
anobject<type2> _type2_object;
anobject<type3> _type3_object;
}
Is there a way to do such a thing with boost pp (or something else)?
Regards,
Olivier