0
votes
2answers
31 views
C++ serialization library that supports partial serialization?
Are there any good existing C++ serialization libraries that support partial serialization? By partial serialization I mean that I might want to say, save the values of 3 specific …
1
vote
2answers
52 views
Boost lib linker error Visual C++
I downloaded the source for Launchy and am trying to build it in Visual Studio 2005. The Launchy project is built using VC7 so I had to update the project files to VC8 and that pr …
0
votes
3answers
83 views
file search in c++
hey
I just started learning c++ and am currently using codeblocks.
i wanna write an application that can search for files in directory including it's subdirs, but i cant seem to f …
0
votes
3answers
41 views
How to accept empty value in boost::program_options
I'm using boost::program_options library to process command line params.
I need to accept a file name via -r option, in case if it is empty (-r given without params) I need to use …
0
votes
1answer
44 views
C# Design guidance for generic image processing library.
Hi all,
In any image processing library there is always the issue of having to provide an implementation of every single algorithm for every single image format (color space, chan …
1
vote
1answer
23 views
Selection between ACE & Boost for learning
Hi everyone, I am an intermediate c++ programmer and done some work using ACE, now I want to learn one of those Libraries thoroughly to progress in to my career. That why I need yo …
0
votes
3answers
64 views
Modifying contents of vector in BOOST_FOREACH
This is a question that goes to how BOOST_FOREACH checks it's loop termination
cout << "Testing BOOST_FOREACH" << endl;
vector<int> numbers; numbers.reserve(8);
…
2
votes
2answers
55 views
Anyone uses boost::multiindex as a one-table database?
I need to maintain a 200 entries, 12 column table at extremely high speed, can I simply use boost multiindex to cutoff the sql overhead?
Has anyone ever tried to do this? What ar …
0
votes
0answers
11 views
Looping over the non-zero elements of a uBlas sparse matrix.
I have the following sparse matrix that contains O(N) elements
boost::numeric::ublas::compressed_matrix<int> adjacency (N, N);
I could write a brute force double loop to g …
0
votes
1answer
71 views
C++: how to use std::less<int> with boost::bind and boost::lambda?
I am trying to lean boost::bind, boost::lambda libraries and how they can be used with STL algorithms. Suppose I have vector of int-string pairs which is sorted by int key. Then a …
4
votes
9answers
165 views
Using Boost on Windows (Visual Studio)
I want to get started using Boost. I'm programming a C++ program in Visual Studio (obviously on a Windows machine).
Boost's Getting Started Guide says:
The easiest way to get …
0
votes
1answer
85 views
Boost Serialization Compile Errors, terribly confused
Okay so basically :
i have this simple example:
main.cpp
using namespace VHGO::Resource;
std::list<BaseTable*> tableList;
BigTable* bt1 = new BigTable();
HRESULT hr = S_ …
1
vote
1answer
45 views
Boost::Random and Enumerated Types
Right now I'm generating a random enumerator using boost's random library. Basically I'm using an implicit conversion to specify the random generator's distribution, getting a rand …
2
votes
1answer
41 views
Import Error on boost python hello program
Hello World Code
#include <boost/python.hpp>
using namespace boost::python;
struct World{
void set(std::string msg) { this->msg = msg; }
std::string greet() { re …
0
votes
1answer
17 views
Boost::asio async_wait handler signature
Hi,
I am going through the boost::asio examples. I am looking at
Example 4
What is confusing is that, the WaitHandler in this example has the signature
void print (this)
…
