I have a std::vector of type boost::variant which contains pointers to standard built-in types.
In code
std::vector<boost::variant<int *, double *> > bv;
bv.resize(2);
int n = 42;
bv[0] = &n;
double d = 102.4;
bv[1] = &d;
This works well, and I can access the values in the vector by using boost::get<int *> or boost::get<double *>.
However, I was wondering if I could set the value of an element in the vector directly, instead of pointing it to a reference. In other words, I would like to do something like this
*bv[0] = 42;
*bv[1] = 102.4;
but this doesn't compile. Does anyone have advice on how to go about this?
Thanks.
EDIT:
Apparently, I don't have enough points to answer my own question, so figured I'd put my solution in the original question instead. Hope this helps someone who stumbles across this page.
I figured I'd answer my own question, in case it helps someone. I wrote a visitor class, that modifies what the pointer in the variant refers to. Here's the code for the visitor class (of course, this can be made a templated class).
class specific_visitor : public boost::static_visitor<>
{
public:
explicit specific_visitor(int i) : i_num(i) { }
explicit specific_visitor(double d) : d_num(d) { }
void operator()(int * i) const
{
*i = i_num;
}
void operator()(double * d) const
{
*d = d_num;
}
private:
int i_num;
double d_num;
};
In order to use it for the vector of variants in the original question, here's the code:
int i_num = 34;
boost::apply_visitor(specific_visitor(i_num), bv[0]);
double d_num = 9.81;
boost::apply_visitor(specific_visitor(d_num), bv[1]);
std::vector<boost::variant<int, double> >make it unrealistic? – KennyTM Feb 8 at 17:55