I have a class that requires a boost::variant containing shared pointers to various types as follows:

template <typename ToySharedPtrVariant, typename ColorSharedPtrVariant>
class ToyPicker {
   typedef std::pair<
     ToySharedPtrVariant, 
     ColorSharedPtrVariant 
   > toyAndColorPair;
   typedef std::map<
     std::string,
     std::vector< 
       toyAndColoPair 
     > 
   > stringToToyColorPairMap;

   // ... methods that use the defined types...
}

This class currently requires template parameters of the following form to compile:

ToyPicker<
           boost::variant<
             boost::shared_ptr<ToyModel> 
           >,
           boost::variant<
             boost::shared_ptr<BlueToy>,
             boost::shared_ptr<RedToy>,
             boost::shared_ptr<GreenToy> 
           > 
         > toyPicker;

How do I use an mpl list so that I can allow the following much simpler definition for users, then convert it into the example format above inside my class implementation?

ToyPicker<
       boost::mpl::list<
         ToyModel
       >,
       boost::mpl::list<
         BlueToy,
         RedToy,
         GreenToy 
       > 
     > toyPicker;
link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

Using boost::mpl::transform in conjunction with boost::make_variant_over does the trick :

#include <boost/mpl/list.hpp>
#include <boost/mpl/transform.hpp>
#include <boost/shared_ptr.hpp>
#include <boost/variant/variant.hpp>

template<class T>
struct add_shared_pointer
{
    typedef boost::shared_ptr<T> type;
};

template<class Seq>
struct shared_ptr_variant
{
    typedef typename boost::make_variant_over<
            typename boost::mpl::transform<
                Seq, add_shared_pointer<boost::mpl::_1>
            >::type
        >::type type;
};
link|improve this answer
feedback

Look at boost::make_variant_over it does what you need.

link|improve this answer
boost::make_variant_over will create a variant<T1,T2...>, not a variant<shared_ptr<T1>, shared_ptr<T2>... > – Andrew Hundt Dec 18 '10 at 7:28
right, kudos to icecrime for being much more thorough than me :) – beb0s Dec 19 '10 at 1:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.