Boost.Variant is a C++ library containing a safe, generic, stack-based discriminated union container, offering a simple solution for manipulating an object from a heterogeneous set of types in a uniform manner.
0
votes
4answers
54 views
Call function on boost::variant regardless of type?
I have a class which has a template:
template<class T = int> class slider;
The class has a void Process(void) method, so, I think it should be callable regarless of the type, return value ...
0
votes
2answers
45 views
push to list of boost::variant's
I have the boost::variant over set of non-default constructible (and maybe even non-moveable/non-copyable and non-copy/move constructible) classes with essentialy different non-default constructor ...
0
votes
0answers
53 views
Traversing boost::variant types with Visitor that takes template
I've got a persistence class like:
class Writer: private boost::noncopyable {
template<typename T>
struct Record {
std::vector<T> _queued; // waiting to be persisted
...
0
votes
1answer
38 views
boost::variant can not handle string and wstring together
While attempting to add support for UTF-8 locales in a library, I added
the type std::wstring to the boost::variant that holds a value.
At that point, I start to get errors with something down inside ...
3
votes
1answer
359 views
Is there a significant impact of the new standard's features on the boost library implementation in C++11?
Is there a significant impact of the new standard's features on the boost library implementation in C++11?
Especially interested in boost::variant (BOOST_VARIANT_LIMIT_TYPES) and boost::spirit parts ...
2
votes
1answer
59 views
boost::optional reference with boost::variant type
I'm currently writing some code for a game and part of that involves creating a history of the actions that have taken place so far in the game. This history is stored in a vector of state_pair_t's ...
0
votes
2answers
60 views
C++ Boost recursive variant overloading apply_visitor
abstract: I am looking to overload the apply_visitor() method in a class that contains a recursive boost::variant object.
In the code included below there is the method:
template <typename T>
...
1
vote
2answers
54 views
Is the boost::variant visitor class a requirement?
Am I required to use a visitor class such as class Visitor : public boost::static_visitor<> with boost::variant?
If not, are there reasons not to use a visitor? Are there reasons to prefer a ...
2
votes
1answer
156 views
boost::variant; std::unique_ptr and copy
This Question Determined That a Non-Copyable Type Can't Be Used With Boost Variant
Tree class
template <class T = int>
class Tree{
private:
class TreeNode{
public:
...
0
votes
1answer
48 views
Boost::Variant; Defining Visitor Class
In Java, I am able to define a variable of a generic class without specifying type.
class Tree<T extends Comparable<? super T>> {}
somewhere-else: Tree tree;
I can then read in some ...
4
votes
1answer
99 views
boost::variant visitor chooses the wrong overload
Why does the following print out "A boolean!"? I realise there are some weird conversion going on, since if I explicitly construct a std::string I get the correct behavior. But why does overload ...
0
votes
0answers
49 views
Is it possible to store the return value of boost::apply_visitor in a member variable?
Is it possible to store the return value of boost::apply_visitor in the member variable of a class?
I need to get Test::Do function to work, but don't know how.
#include "boost/variant/variant.hpp"
...
0
votes
0answers
52 views
Boost Variant: When I add a specific header file, errors explode
I have created a pretty nice nifty program using boost variant (recursive) which up until now has been working perfectly.
I suddenly wanted to add a header file and I got dumped a huge errors I can't ...
1
vote
1answer
57 views
boost::spirit::karma: using no_delimit with alternatives
I'm trying to turn off delimiting around a rule that includes the alternatives operator ('|'), but I'm getting a compile error about incompatible delimiters. As an example, I took the ...
0
votes
1answer
71 views
boost variant with custom classes
I was trying boost-variant with custom classes. I understood that a safe way to access the content of a class is using boost::static_visitor. Do you know why the code below doesn't compile? Are there ...
0
votes
1answer
32 views
boost::variant object construction count VS destruction count
I've used boost::variant for some time and now I'm trying to figure out how it internally works. I wrote a simple test and I can't understand the results. Here it is (simplified)
struct my_type
{
...
0
votes
1answer
98 views
Boost Variant : How can I do a visitor that returns the type that was set?
I'm trying to write a generic map that uses a boost:variant as the value.
I'm stuck on trying to write the get(std::string key) function that will return the appropriate type.
Here is what I came up ...
2
votes
1answer
89 views
Boost Spirit and abstract syntax tree design
I'm using Qi from Boost Spirit to parse VRML 1.0. There is a group node called Separator and immediately under Separator, many different types of nodes can be held. The AST is based upon Boost.Variant ...
2
votes
1answer
118 views
String-bool comparsion - why?
I was working with boost::variant<int,std::string,bool> and its visitors when I runned into an unexpected behavior: the string and bool values were comparable. I don't know, why does it work ...
7
votes
3answers
339 views
How to achieve dynamic polymorphism (run-time call dispatch) on unrelated types?
GOAL:
I would like to achieve type-safe dynamic polymorphism (i.e. run-time dispatch of a function call) on unrelated types - i.e. on types which do not have a common base class. It seems to me that ...
0
votes
0answers
79 views
Add data to a boost property_tree
I have a simple tree structure stored in XML and use boost::property_tree::ptree to read and extract the information. I then recreate the tree using std::maps so that I can store data in the leaves. ...
2
votes
1answer
136 views
Unable to convert boost::fusion struct in boost::variant while using boost::spirit
Good time of day!
I wrote this piece of code and expect it being able to be compiled.
#include <string>
#include <boost/spirit/include/qi.hpp>
#include <boost/tuple/tuple.hpp>
...
1
vote
2answers
158 views
How to implement a boost::variant derived-class?
I have tried for hours to code a class deriving from boost::variant. But I do not understand what is the problem (I do not understand what the compilation error means).
What are the rules to ...
0
votes
1answer
73 views
implementing visitation class within other class
I am trying to identify the type of a boost::variant within a class object to perform the associated member functions. Consider the following code:
#include <cstdio>
#include <cassert>
...
1
vote
1answer
118 views
identify variant type
I am confusing the following problem by identifying the a specific type within boost::variant and pass it as member function argument within a class object. Consider the following code
typedef ...
3
votes
2answers
169 views
why is std::vector of boost::variant causing parsing issues in boost spirit?
Expanding on this earlier post, I thought I would try to capture a std::vector<boost::variant<double,std::string>> instead of just boost::variant<double,std::string>, but starting ...
1
vote
1answer
196 views
boost::variant implementation
I'm just curious about boost::variant's implementation.
Does it work like this?
Two members:
(1) A number representing the currently stored type (i.e. 0 for the first template parameter, 1 for the ...
6
votes
1answer
108 views
boost::variant - Why a template parameter has higher precedence than a const string parameter
I am witnessing a behavior in the following code that I don't understand. The point is that if I declare the second overload of operator() like either of the following:
bool operator()(T other) const
...
6
votes
2answers
275 views
boost::variant - why is “const char*” converted to “bool”?
I have declared a boost::variant which accepts three types: string, bool and int. The following code is showing that my variant accepts const char* and converts it to bool. Is it a normal behavior for ...
3
votes
1answer
173 views
Compare two variant with boost static_visitor
I started to use the boost library a few days ago so my question is maybe trivial.
I want to compare two same type variants with a static_visitor. I tried the following, but it don't want to compile.
...
1
vote
1answer
81 views
Boost::spirit processes rule with branches incorrectly
I wrote the code listed below. The compiler reports me an error: 'none of the 3 overloads could convert all the argument types'.
I use MSVC 11.0 and Boost 1.51.0. Each branch of expression for ...
1
vote
1answer
158 views
Boost::variant could not resolve operator<< for std::ostream
I don't really understand what is going on. I'm using MSVC 2012, Boost 51. This code is expected to work fine, but it does not get compiled:
#include "stdafx.h"
#include <string>
#include ...
2
votes
1answer
120 views
Compilation error on ambiguous type in code using boost::spirit
If I write this code it still compiles:
namespace MyNamespace
{
struct STreeConstructionRuleQuery : std::string {};
struct STreeConstructionRuleOperation : std::string {};
struct ...
1
vote
3answers
123 views
Getting type from template value, C++
I have the following method in which I'm using boost::variant. I try to get the value, based on type T. If boost::get<T> fails I want to handle that in a special way if T is an int or unsigned ...
1
vote
1answer
152 views
boost::apply_visitor is not a member of [some] class
I have a ShapeType, Point, with some coordinates, (1,2), and I'd like to use apply_visitor in an overloaded operator () to add the coordinates (3,4) to my Point, so that Point ends up being (4,6). ...
1
vote
1answer
70 views
Compilation error about operator reloading using boost::variant
I'am trying to learn boost.variant. However, the code which I copied from a book won't pass the compilation:
class var_print : public boost::static_visitor<void>
{
public:
...
2
votes
1answer
209 views
boost::spirit::karma using the alternatives operator (|) with conditions
I'm trying to generate a string from my own class called Value using boost::spirit::karma, but i got stuck with this. I've tried to extract my problem into a simple example.
I want to generate a ...
0
votes
1answer
204 views
Changing boost::variant underlying type from visitor
I have a recursive variant that models an S-expression:
struct sexpr {
typedef boost::variant<
nil,
int,
double,
symbol,
string,
...
1
vote
1answer
108 views
Pass by value thinks parameter is const
Visual Studio Enterprise 2010, sp1, on Windows 7 64bit. Boost 1.48.0.
Here begins the relevant code. These bits are defined in a header.
//typedef struct {} empty_t;
//typedef std::pair<size_t, ...
1
vote
1answer
141 views
boost variant istringstream and stream error
I'm using Visual Studio 2010 sp1. with c++ and boost 1.47 in Windows 7
I have the following code:
typedef boost::variant<unsigned int,int,long,double,bool,string,istringstream,int32_t,
...
2
votes
1answer
312 views
String parser with boost variant recursive wrapper
The code below (adapted from spirit qi mini_xml example) does not compile. There is an error related to the rule brac that has an attribute of an recursive boost::variant.
However, all commented out ...
3
votes
2answers
206 views
boost::variant linker error with gcc
I am going a bit nuts trying to figure out why the following won't compile:
#include <iostream>
#include <array>
#include <boost/variant.hpp>
#include <forward_list>
typedef ...
2
votes
1answer
110 views
Calling methods common to types in a boost::variant
If all the types in my boost::variant support the same method, is there a way to call it generically (i.e. not calling it seperately for each method of the static_visitor)?
I'm trying to get ...
1
vote
1answer
87 views
ADL can't locate stream operator with appropriate qualifiers for a user defined type
I'm compiling an x64 service on Microsoft Windows 7 with Visual Studio 2010, using a Boost variant something like:
namespace my_ns
{
typedef struct {} empty_t;
typedef std::pair<size_t, ...
0
votes
0answers
84 views
Serialization of boost::variant [duplicate]
Possible Duplicate:
Is it safe to serialize a raw boost::variant?
I would like to serialize a boost::variant type of nonPOD classes. Would you please tell me if that is possible and show ...
2
votes
2answers
133 views
How can I return a variable number of containers of various types?
I have data that looks like this:
token eps rank # first line names columns
Intercept 9.362637e+00 1 # later lines hold data
A1 -2.395553e-01 30
G1 ...
3
votes
1answer
287 views
Boost.Spirit with Boost.Variant and C++11: Expecting a zero-argument constructor
I'm trying to compile a simple grammar using Boost.Spirit. I'm using g++ 4.7.0 and boost 1.49.0-1.1 on Arch Linux x86_64.
The eventual goal here is an assembler. There will be multiple operands with ...
0
votes
1answer
526 views
What is the equivalent of boost::variant in std c++?
I am looking for an alternative to C-style union. boost::variant is one such option. Is there anything in std C++ ?
union {
int i;
double d;
}
1
vote
1answer
130 views
Boost::Variant - “no matching function for call”
There are a ton of questions regarding this problem but none of them seem to be a solution to my problem. I don't think this is really a Boost::Variant issue; I'm pretty sure that I'm just using ...
2
votes
1answer
124 views
Forward-declared class in boost::ptr_list
for a small science project I set up a Simulation class which holds all simulated Objects in a ptr_list. Because I need to have fast access to all Particles I added an additional ptr_list. Now boost ...

