how to get the i-th underlying type (by an const integer) of af boost::variant

79 Views Asked by At

I would like to get the underlying type of a variant. For example"something similar to this:

typedef boost::variant< shared_ptr<int> , shared_ptr<float> > VType;

typedef VType::get<0>::type  TYPE1;       // TYPE1 = shared_ptr<int> 

TYPE1 value = new std::remove_pointer<TYPE1>::type()    // make a new  shared_ptr<int>

Any ideas how to achieve this with boost?

1

There are 1 best solutions below

0
On

The variant contains an MPL sequence called types, which you can use to access the types.

#include <boost/mpl/at.hpp>

typedef typename boost::mpl::at_c<VType::types, 0>::type TYPE1;