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?
The
variant
contains an MPL sequence calledtypes
, which you can use to access the types.