I'm using a boost variant to hold some generated types, right now my code generator creates a header with the types and a variant capable of holding them. At initialization time, I'd like to iterate over the allowable types in the variant, not the types the variant is holding at the moment.

Can I do this with a variant?

link|improve this question

Iterating over the types to do what? – Georg Fritzsche Jan 30 '10 at 13:11
I need to populate a map<string, MyVariant>. – swarfrat Jan 30 '10 at 14:03
feedback

1 Answer

up vote 11 down vote accepted

boost::variant exposes its types via types, which is an MPL list. You can do runtime operations over MPL lists using mpl::for_each:

struct printer {
    template<class T> void operator()(T t) {
        std::cout << typeid(T).name() << std::endl;
    }
};

// ... 
typedef boost::variant<int, char> var;
boost::mpl::for_each<var::types>(printer());
link|improve this answer
You're a useful fellow. Thanks =] – taxilian Jan 4 '11 at 5:42
feedback

Your Answer

 
or
required, but never shown

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