Boost is a large collection of high-quality libraries intended for use in C++. Boost is free, and is often considered a "second standard library".

learn more… | top users | synonyms

0
votes
0answers
13 views

C++ boost/regex regex_search

Consider the following string content: string content = "{'name':'Fantastic gloves','description':'Theese gloves will fit any time period.','current':{'trend':'high','price':'47.1000'}"; I have ...
0
votes
0answers
6 views

Can an existing object be passed into a Boost.Serialization load?

I'm using Boost's Serialization library to save and load the state of an app. The objects rely on a TCP connection. Right now I'm distributing a pointer to the TCP connection into the objects after ...
-1
votes
1answer
23 views

Get a double from boost::chrono::steady_clock::now()

How would I get a double value from boost::chrono::steady_clock::now()? I don't believe there is a .count() parameter for this. Why do I need this? I have a method that cannot parse the boost ...
0
votes
0answers
6 views

Integrating ODEs on the GPU using boost and python

I posted here not too long ago about a model I am trying to build using pycuda which solves About 9000 coupled ODEs. My model is too slow however and an SO member suggested that memory transfers from ...
0
votes
0answers
14 views

boost::serialization with xml archive and register_type

I have a serializable class which has a pointer to a base class member and it needs to serialize the derived class. I did it this way : template<class Archive> void serialize(Archive & ar, ...
1
vote
1answer
40 views

Boost Intrusive/binary search trees

I'm looking for a binary search tree for a Voronoi tessellation algorithm (Fortune's algorithm; a darned non-trivial task in itself, methinks), so of course, I thought I'd have a look at Boost. Boost ...
1
vote
1answer
45 views

Is it possible to avoid overhead while using boost_any?

I'd like to use boost::any as a universal type to store in a container and to pass to different functions. But inside these functions I always know the real type, so in runtime I don't need any type ...
1
vote
1answer
45 views

boost c++ libraries: sleep_for wait (almost) twice

I'm using the Boost C++ Libraries but I've some problems with `sleep_for` function: it takes very long time!!! If I want to sleep a thread for just 1 second it sleep the thread for 2 seconds!!! I'm ...
4
votes
2answers
62 views

Possible to select between different Boost pseudo-random number generators at run-time?

I'm using the Boost Random library to generate random numbers for a Monte Carlo simulation. In order to check my results, I'd like to be able to use different RNG engines for different runs. Ideally ...
2
votes
2answers
47 views

Adding std::vector<bool> to a Variant of Containers

I'm wrapping a C interface which has a load function returning a Value* object, which points to a dynamic array of Value objects: typedef struct Value { union { int8_t i8; ...
1
vote
2answers
70 views

How to iterate over two STL-like containers (Cartesian product)

I'd like to reduce the following with BOOST typedef std::vector<int>::const_iterator Iterator; for(Iterator i = v1.begin(), ie = v1.end(); i != ie; ++i) { for(Iterator j = v2.begin(), je = ...
0
votes
1answer
31 views

templated function which accepts only string or arithmetic

I'm trying to get this to work: template<class Type> typename boost::enable_if< boost::mpl::or_< boost::is_arithmetic<Type>, is_string<Type> > >::type get(const ...
0
votes
0answers
27 views

OpenCV 2.4.5 & Boost for Passing VideoCapture

Issue: Want to pass cv::VideoCapture objects into a different thread. I want to be able to dynamically handle how many cameras I can have. Proposed Solution: Insert into a vector and pass as argument ...
0
votes
1answer
24 views

Uncompress data in memory using Boost gzip_decompressor

I'm trying to decompress binary data in memory using Boost gzip_decompressor. From this answer, I adapted the following code: vector<char> unzip(const vector<char> compressed) { ...
-1
votes
0answers
28 views

Boost bimap. Compilation error

I developed a program using boost bimap. Earlier it worked. But now when I compile the program I get error: non-template 'map_by' used as template struct EntityTag {}; struct IndexTag {}; ...
0
votes
1answer
39 views

Boost calling method from outside of class

Let's see how simple of a question I can ask. I have: void TCPClient::test(const boost::system::error_code& ErrorCode) { // Anything can be here } and I would like to call it from another ...
0
votes
1answer
16 views

Set a maximum step size in odeint

I create a boost::odeint stepper as follows: auto stepper=boost::numeric::odeint::make_dense_output(0.01/*Absolute*/,0.1/*Relative*/, boost::numeric::odeint::runge_kutta_dopri5< CombinedState ...
1
vote
1answer
33 views

Calling boost::asio::read() in a thread blocks calling thread or process?

I'm quite new to network programming and I'm writing a program that should accept many TCP connections and receive data from them. To make things go parallel, the agent should read data from each ...
0
votes
1answer
18 views

how to get properties within subsections of a ini file with boos property tree?

I am trying to use the Boost property trees to read INIfiles containing properties within sections have a "composed" path name. For example my INIfile looks like this: [my.section.subsection1] ...
0
votes
0answers
20 views

boost_check_equal_collections for double arrays

I have a question with BOOST_CHECK_EQUAL_COLLECTIONS. It is straightforward to compare the calculated array with the expected one if the data type of the array happens to be int or char. However, when ...
1
vote
1answer
59 views

Passing data from caller thread to the method in another boost::thread

I have rather a noob question regarding concurrency in C++ (Using Boost threads) on which I haven't found a clear answer.I have a worker class which runs in a separate thread.I init the worker on ...
2
votes
1answer
56 views

Boost memory_order_consume Example

I was looking at a Boost example regarding atomic operations and the happens-before relationship, and I'm a bit confused. In the "happens-before through release and consume" section, there is the ...
0
votes
0answers
32 views

Using vertex_name when reading a GraphML file with Boost Graph

I am trying to load a simple GraphML file such that each vertex has a vertex name as stored in the GraphML. I can change the GraphML, the important thing is that I have access to the vertex_name from ...
0
votes
1answer
34 views

Boost C++ regex - how to return all matches

I have and string "SolutionAN ANANANA SolutionBN" I want to return all string which start with Solution and end with N. While using regex boost::regex regex("Solu(.*)N"); I am getting output as ...
0
votes
0answers
35 views

boost::interprocess::managed_shared_memory > segment as a member

I want this C++: boost::interprocess::managed_shared_memory segment(boost::interprocess::create_only, segment_name, 65536); as a member of (e.g.) a struct (, or a class). C++: typedef struct{ ...
0
votes
1answer
19 views

error LNK1104: cannot open file 'libboost_serialization-vc110-mt-gd-1_53.lib'

I use Boost serialization to create a simple XML file, but when debug, I got this error "error LNK1104: cannot open file 'libboost_serialization-vc110-mt-gd-1_53.lib'" I have tried to fixed my problem ...
0
votes
0answers
25 views

visual studio says cannot open lib file even if its there : lnk1104 error

I am trying to test a boost code #include <boost/asio.hpp> #include <iostream> int main( int argc, char * argv[] ) { boost::asio::io_service io_service; io_service.run(); ...
1
vote
1answer
45 views

Boost asio for writing to files

I would like to write files asynchronously. I have a class with a function that takes in a vector, and the file name, and sends it to the file. This function can be called a few thousands of time, ...
0
votes
0answers
18 views

VS 2010 looking for wrong boost lib?

I'm trying to use #include "boost/date_time/gregorian/gregorian.hpp" but wind up with the error message LINK : fatal error LNK1104: cannot open file 'libboost_date_time-vc100-mt-gd-1_51.lib' VS is ...
1
vote
2answers
48 views

Boost serialization and vector of lots of objects

I am using boost serialization to serialize/deserialize 3d model meshes, like this: struct PackageMesh { std::vector<Vec3> mVertexData; std::vector<Vec3> mNormalData; ...
1
vote
1answer
26 views

async_read_until finishing before delimiter read

I am having a problem using async_read_until. I was originally using async_receive but the response from my server grew to be more than one packet, and I ran into a problem where async_receive would ...
4
votes
0answers
81 views

How do I debug a potential endless loop and heap corruption issue involving boost::interprocess managed_shared_memory?

I have the following "first-chance exception" message which is coming from a DLL I wrote which is running inside an executable that I did not write. That is, the DLL is a plugin. The first time this ...
0
votes
0answers
30 views

link to boost:asio in windows 7, NetBeans

i'm trying to build a test case async_tcp_echo_server.cpp in NetBeans, but I did not go. Code: http://www.boost.org/doc/libs/1_53_0/doc/html/boost_asio/example/echo/async_tcp_echo_server.cpp My ...
0
votes
1answer
37 views

boost exception with RCF on linux

i am having this problem with boost , C++ , i installed a new boost on fedora14 (boost 1.44), i am linking with RCF library which uses boost , and i am also linking with boost , the compilation ...
0
votes
1answer
24 views

boost::make_shared and C++Builder VCL objects

I've tried switching some C++Builder 2010 code using new to use boost::make_shared<>, as below. Old: boost::shared_ptr<TStringList> l(new TStringList()); New: ...
0
votes
0answers
22 views

How to check if boost::filesystem::path (of wchar_t) is having valid file path in windows?

My code contains boost::filesystem::path variable which will accept unicode characters(std::wstring input to path). I want to check whether filesystem::path is valid Windows path or not. I can see lot ...
1
vote
1answer
29 views

boost::asio::async_write issue over serial channel

I have client server application, the flow is as explained below: client is at windows side and do not use boost server is at linux side and uses boost client-server communicates over serial channel ...
0
votes
0answers
19 views

Trouble setting up Boost on Mac OS X & Xcode (C++)

I installed boost for C++ on my machine using MacPorts, and added /opt/local/include for the Header search path for both debug and release. However, when I compile the default hello world program, I ...
0
votes
3answers
75 views

What are these c++ syntax equilvalent to? [closed]

From http://www.boost.org/doc/libs/1_53_0/doc/html/boost_asio/tutorial/tutdaytime3/src.html where calls are made to methods or classes just outside the class or member method declaration preceded by: ...
0
votes
0answers
74 views

boost::asio read on socket to server blocks all incoming connection on client socket to be accepted

I'm quite new to boost::asio, currently writing http proxy (at the moment testing on Windows 7, boost 1.52.0 ). I faced behavior I don't really understand could you please help me with it. I'm using ...
0
votes
1answer
38 views

parse string into struct with boost spirit

I have the following code I need to parse a string and move it to a struct defined as follows: #include "boost\spirit\include\classic.hpp" #include "boost\spirit\include\qi.hpp" #include ...
0
votes
1answer
16 views

C++ Boost Docset

Is there a docset for Boost? I'ld like to add it to Dash for offline documentation search, and can't find one anywhere. All attempts of my own to build it have failed, rather spectacularly.
3
votes
1answer
56 views

Why do I always get default values when passing positional arguments?

I'm trying to familiarize myself with boost::program_options, and I'm running into a problem with positional arguments. Here's my main function, where I set options passed through the command line. ...
0
votes
0answers
30 views

Why can't I use the << operator with the value extracted from this variables_map?

I'm familiarizing myself with boost::program_options (and C++ in general). I wrote the function below, but I can't quite understand the error I'm getting. Here's the code (note that po is an alias ...
1
vote
1answer
84 views

Why is this use of the [] operator causing a compiler error? [closed]

I wrote this quick function to get familiar with boost::program_options. Please note that po is a namespace alias, defined thus: namespace po = boost::program_options. int ...
0
votes
1answer
53 views

How to create iterative boost threads?

I am working with Boost threads library in C++ and I want to create different threads to process some buckets of data. Firstly, I load the data into smaller buckets (100 elements each) and assign each ...
0
votes
1answer
19 views

How to use Boost.Signals2 connect_extended?

I have a working Boost.Signals2 signal & slot combination in my C++ project & set up like so; //DECLARE SIGNAL signals2::signal<void (const EN_DATA_STREAM, long, double, double, double, ...
-3
votes
0answers
35 views

“Boost.Container” vs “Boost.Intrusive” vs “Folly Containers” vs “Boost Pointer Container” etc [closed]

Forgive me if this question has already been asked elsewhere, but I could not get hold of a precise (i.e. complete) answer by a simple search... The question is the following: is out there any ...
0
votes
1answer
14 views

uBLAS matrix clear memory

I have a uBLAS matrix, like so: boost::numeric::ublas::matrix<double> mat(50000,50000); Once I'm done with a set of calculations on the matrix, I want its memory freed. I have been using ...
0
votes
1answer
32 views

Serializing binary data in boost fails with `invalid signature' error

I'm having difficulties figuring out correct way of using boost serialization/asio to send objects over network. The message class is as simple as possible. It's not C++ friendly nor suitable for my ...

1 2 3 4 5 187