3
votes
8answers
181 views
Is there a good way of setting C/C++ member variables from string representations? (introspection-lite)
I've got a struct with some members that I want to be able to get and set from a string. Given that C++ doesn't have any introspection I figure I need some creative solution with …
0
votes
2answers
47 views
File backed Trie (or Prefix Tree) implementation
I have to store lot of strings in c++ map to keep unique strings and when ever duplicate string occurs I just need to increment the counter (pair.second). I've used c++ map and it …
27
votes
29answers
3k views
Hidden Features and Dark Corners of STL?
C++ developers, all know the basics of C++: Declarations, conditionals, loops, operators, etc.
Some of us even mastered the stuff like templates, object model, complex I/O, etc.
…
2
votes
4answers
103 views
Where is Boost.Process?
I need to execute a program and retrieve its stdout output in c++. I'd like my code to be cross-platform too.
Having recently discovered the wonderful world of the Boost c++ libra …
1
vote
1answer
45 views
Boost::typeof compiler problem: mangling typeof, use decltype instead
Hi,
short example:
#include <boost/typeof/typeof.hpp>
#include <boost/proto/core.hpp>
using namespace boost;
template<class T, class U>
BOOST_TYPEOF_TPL(T() …
3
votes
2answers
78 views
C++ array with value semantics and no allocator shenanigans?
I'm looking for a C++ container that's a cross between boost::array, boost::scoped_array and std::vector.
I want an array that's dynamically allocated via new[] (no custom allocat …
3
votes
4answers
110 views
How do I invoke a non-default constructor for each inherited type from a type list?
I'm using a boost typelist to implement the policy pattern in the following manner.
using namespace boost::mpl;
template <typename PolicyTypeList = boost::mpl::vector<> …
2
votes
6answers
105 views
Cross-Platform equivalent to windows events
I'm trying to port some Windows code to Linux, ideally through platform-independent libraries (eg boost), however I'm not sure how to port this bit of event code.
The bit of code …
0
votes
3answers
69 views
boost::format question
Consider the following :
#include <vector>
#include <string>
#include <iostream>
#include <boost/format.hpp>
#include <boost/assign.hpp>
#include &l …
1
vote
7answers
129 views
How to synchronize and combine results from multiple threads in C++?
I have a data feed continuously feeding data packet in. There are 5 threads(A, B, C, D, E) processing the data packages. Note the 5 threads have totally different speed and they ge …
0
votes
2answers
33 views
Boost MinCut from MaxFlow
I need to get an st-MinCut of a graph. I recently started using the C++ Boost libraries, which don't seem to have that st-MinCut functionality, but the do have MaxFlow implementati …
1
vote
1answer
61 views
How to create a Boost.Asio socket from a native socket?
I am merely trying to create a boost ip::tcp::socket from an existing native socket. In the assign function, the first parameter must be a "protocol_type" and the second must be a …
1
vote
3answers
78 views
How can I tell reliably if a boost thread has exited its run method?
I assumed joinable would indicate this, however, it does not seem to be the case.
In a worker class, I was trying to indicate that it was still processing through a predicate:
b …
0
votes
2answers
68 views
Use Eclipse’s code completion for boost
Hi,
I would like to profit from Eclipse's code completion for boost:shared_pointer in Eclipse 3.5 with CDT 6.0.
Eclipse doesn't offer any completion while I'm writing the followi …
1
vote
1answer
60 views
Why is this boost::variant example not working?
I am getting to know boost::variant. I think this example should work.
#include <boost/fusion/sequence.hpp>
#include <boost/fusion/include/sequence.hpp>
#include < …
