0
votes
0answers
19 views
Interrupt boost::asio synchronous read?
I'm using asio synchronous sockets to read data over TCP from a background thread. This is encapsulated in a "server" class.
However, I want the thread to exit when the destructor of this class is …
0
votes
2answers
51 views
printf boost:tuple
Is there're way to pass boost::tuple to printf()?
0
votes
1answer
24 views
Can more than one boost::signal be connected to 1 slot?
i know i can connect multiple slots to the same signal.
but Can I do it the other way round? having 3 signals connected to the same slot?
anyone ever tried this?
thanks a lot!
0
votes
2answers
43 views
C++ : How to include boost library header in VC++6?
I used this guide to rebuild the boost library in VC++6 under windows XP. But is having problems trying to include the header files. By default, the boost library makes use of point 1 as follows to …
0
votes
3answers
68 views
Disable Exceptions in BOOST?
I want to use boost::asio but I don't want boost to throw exceptions, because in my environment exceptions must not be raised.
I've encountered BOOST_NO_EXCEPTIONS but the documentation says that …
0
votes
0answers
13 views
How to use boost::function_types::parameter_types with ClassTypeTransform
I have been toying with an example hpp provided in the boost library and I am trying to figure out how to use this parameter_types function correctly.
From the boost doc, parameter_types needs a …
3
votes
7answers
100 views
Cast boost::shared_array<char> to boost::shared_array<const char>
How can I cast a boost::shared_array<char> to boost::shared_array<const char>?
1
vote
2answers
49 views
Boost’s Interpreter.hpp example with class member functions
Boost comes with an example file in
boost_1_41_0\libs\function_types\example
called interpreter.hpp and interpreter_example.hpp
I am trying to create a situation where I have a bunch of …
1
vote
2answers
104 views
Why is there so much legal paranoia surrounding Boost?
It seems from reading SO that there's a lot of legal concern about Boost in some companies. Some people are apparently prohibited from using it. Since Boost is licensed under about the most …
0
votes
2answers
56 views
Loading Boost 1.40.0 into Intellisense in Visual Studio 2005?
Is there any way to get Intellisense in Visual C++ for Visual Studio 2005?
I'm trying to get the Boost libraries to load up with intellisense and in the object browser/class view.
I installed the …
2
votes
3answers
98 views
Cross-platform library for manipulating Windows paths?
I am writing a cross-platform application that needs to inspect and manipulate Windows-paths.
Specifically, for the particular problem I am having now, I need to know if a path is absolute or …
0
votes
0answers
11 views
How do I copy files and folders using boost and Visual Studio 2005?
I'm trying to use boost::filesystem to copy files and folders (just like a standard copy a folder and paste it in windows explorer).
Although I've been to the boost::filesystem documentation, I still …
1
vote
3answers
79 views
Get the templated type as a string
After reading C++ compile-time string hashing with Boost.MPL, and considering a problem I have, the following came to my mind.
I have the base class:
template<class Command>
class Base {
…
0
votes
3answers
28 views
Unziping a zip file with boost and Visual C++ 2005?
Is there a library in boost that can be used to unzip a zip file?
0
votes
2answers
82 views
boost::random generate the same number every time
main .cpp
#include "stdafx.h"
#include "random_generator.h"
int
main ( int argc, char *argv[] )
{
cout.setf(ios::fixed);
base_generator_type base_generator;
…
