13
votes
1answer
5k views

Boost.Any vs. Boost.Variant

I'm having trouble choosing between Boost.Any and Boost.Variant. When should I use each one? What are the advantages and disadvantages of each? I am basically looking to store some states from ...
6
votes
1answer
306 views

Iterating over the types in a boost::variant

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 ...
4
votes
1answer
256 views

Why does boost::spirit::qi::parse() not set this boost::variant's value?

When trying to parse text into a boost::variant, the variant's value does not get changed. The parsers by themselves appear to work fine, so my assumption is that I'm doing something wrong with the ...
3
votes
1answer
40 views
+100

Construct a boost variant containing a value of the nth-type in the variant type index?

I want to construct boost::variants containing default-constructed values, specified with a type index - without writing my own switch statement over the type index. I figure this must be possible, ...
3
votes
2answers
173 views

How to decide on stack vs heap vs boost::pool allocation in a case like this?

I have a class that uses boost::variant to store a double or a string, like this : class value { boost::variant<double, std::string> val; }; It's supposed to be an immutable value type for ...
3
votes
2answers
834 views

Is it safe to serialize a raw boost::variant?

boost::variant claims that it is a value type. Does this mean that it's safe to simply write out the raw representation of a boost::variant and load it back later, as long as it only contains POD ...
2
votes
0answers
41 views

How does boost::variant store references?

The following code compiles and does the "right thing" : #include <boost/variant.hpp> #include <iostream> int main() { int a = 10; boost::variant<int&, float&> x = a; ...
2
votes
1answer
340 views

Boost Variant: How to model JSON?

I'm trying to parse JSON string using Boost Spirit store JSON object into recursive data structures: Value <== [null, bool, long, double, std::string, Array, Object]; Array <== [Value, Value, ...
2
votes
1answer
98 views

using same datatype in boost variant

Can we explicitly typecast the value which is to be stored in boost varaint?? Example: typedef int abc; typedef int asd; typedef boost::variant<abc, char, asd, float> link_try1; int main() ...
2
votes
2answers
953 views

visitor template for boost::variant

I would like to use a boost.variant<T0,T1,T2> as a parameter to a template 'Visitor' class which would provide visitor operators as required by the boost.variant visitor mechanism, in this case ...
2
votes
2answers
169 views

How to iterate through a sequence of bounded types with Boost.Variant

struct A { std::string get_string(); }; struct B { int value; }; typedef boost::variant<A,B> var_types; std::vector<var_types> v; A a; B b; ...
2
votes
1answer
669 views

Iterator for boost::variant

Hy there, I'm trying to adapt an existing code to boost::variant. The idea is to use boost::variant for a heterogeneous vector. The problem is that the rest of the code use iterators to access the ...
2
votes
2answers
499 views

Adding member functions to a Boost.Variant

In my C++ library I have a type boost::variant<A,B> and lots of algorithms getting this type as an input. Instead of member functions I have global functions on this type, like void f( ...
1
vote
0answers
32 views

How do I make a recursive boost::variant which works with gcc 4.6?

I am decoding bencode, and have some code which works well with gcc 4.4. But having recently upgraded to gcc 4.6 this code no longer builds: #ifndef BENCODE_VALUETYPES_H #define BENCODE_VALUETYPES_H ...
1
vote
1answer
142 views

Boost::Variant and function_types in it: How to put functions into Boost::variant?

Lirics: I try to implement a task pool over MPI. So I need some kind of RPC but one that would work between difrent parts of my programm, meaning processor A wants processor B to call function C with ...
1
vote
1answer
122 views

boost variant destructors results in segmentation fault

I faced a problem using a Boost variant. I have a segmentation fault when the variant gets destructed. The weird thing is that this segmentation fault occurs only when I do not activate the ...
1
vote
1answer
149 views

How to load a serialized boost::variant?

I'm not able to use boost::serialization because it has library dependencies so I'm trying to figure out a way to do it myself. It doesn't matter if that means copying from boost::serialization. ...
1
vote
1answer
175 views

variant problem with compiling a file

I tried compiling the following code from this page: http://www.pdc.kth.se/training/Talks/C++/boost/libs/variant/doc/sample.html Under "A binary tree implementation" and I got a ton of errors that ...
1
vote
1answer
155 views

requirements on boost::static_visitor

I am a bit confused on the application of boost::static_visitor for variants and structures. I have included a test case below. For the commented out sections in "s_visitor", I do not understand ...
1
vote
2answers
278 views

How to compare boost::variant in order to make it a key of std::map?

How to compare boost::variant in order to make it a key of std::map ? Seems that operator<() is not defined for boost::variant
0
votes
1answer
56 views

Setting a boost::variant that contains pointers, inside of a std::vector

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] ...
0
votes
2answers
127 views

Boost Variant: how to get currently held type?

As I understood all types of boost.variant are parsed into real types (meaning as if boost variant<int, string> a; a="bla-bla" would after compilation turn into string a; a="bla-bla") And so I ...
0
votes
1answer
141 views

Boost.Variant, Boost.MPL: How to append types?

I look at this grate code based on boost.Any and cant help but wonder if we could use Boost.Variant instead. I wonder if such API would be possible: void voidFunc() { std::cout << "void ...
0
votes
1answer
94 views

Robust boost::variant serialization

I am using boost::variant and boost::serialize in my application. The serialization module has built in support for serializing variants, so: boost::variant<int,double> u(3.14); // Do ...
0
votes
2answers
110 views

using boost visitor to convert between types

Let's say that I have a boost::variant<std::string, int> myVariant; In this object I keep data from a database, which is usually integer or text, but sometimes is a time stored in the ...
0
votes
3answers
100 views

boost::variant get last accessed type

This is what I want to do: boost::variant a<int, string>; int b; a=4; b=a; //doesn't work. What is the easiest way to make b=4? I know I can use get, but I want to be able to do this without ...
0
votes
2answers
328 views

Applying a boost::mpl::list to the template parameter of a type

I have a class that requires a boost::variant containing shared pointers to various types as follows: template <typename ToySharedPtrVariant, typename ColorSharedPtrVariant> class ToyPicker { ...
0
votes
2answers
646 views

C++ template metaprogramming to create a boost::variant from a shared_ptr and a boost::static_visitor

As a personal exercise, I want to implement the visitor pattern using shared_ptr. I am familiar with Robert Martin's acyclic visitor paper but find the intrusive nature of the virtual accept() and ...
-4
votes
1answer
88 views

c++ , and Boost :: variant Libraries [closed]

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, ...