Tagged Questions
12
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
285 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
210 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
2answers
162 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
811 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
1answer
305 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
94 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
878 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
168 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
629 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
481 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
1answer
126 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
99 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
140 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
160 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
143 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
266 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
2answers
107 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
122 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
86 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
89 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
93 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
311 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
624 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
77 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, ...