My code is look like:

enum a { b=0, b1=1 } ;
class enumaration { };

enumaration<a> cc

enum a1 { bb=0,bb1=1};

enumaration cc1 and so on , similar to like this

boost::variant<cc, cc1,....> object;
vector<object> oo_list;
struct lsr{
   oo_list _oo
}

this is my generalized example so please can any one provide solution that

how to access or assign the value of a=0, or a1=1, or b=0 to structure variable _oo

best regards babu

link|improve this question
9  
This is completely impossible to understand. – Griwes Dec 13 '11 at 10:43
Please read a good C++ book first. – Nawaz Dec 13 '11 at 11:23
1  
The first two lines are valid C++. The next line is meaningless. Maybe explain what you are trying to do with "enumeration<a>" and ask a question about that, instead. Leave boost::variant for later, your problems are more basic than that. – wolfgang Dec 13 '11 at 12:49
feedback

closed as not a real question by Mankarse, thiton, Nawaz, Samuel Liew, AVD Dec 13 '11 at 13:10

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

1 Answer

To observe the content of a variant, if you know the type, simply call boost::get<Typename>(instance_of_variant);. If you don't know the type, you can use the visitor pattern, and use boost::apply_visitor on the variant (see the docs).

To assign, simply assign (as long as your types are copy constructible), this will work

some_variant_which_has_some_type = some_type(some_value);
link|improve this answer
feedback

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