I am sharing some memory between processes, using the boost library; boost::interprocess::managed_shared_memory managed_shm(boost::interprocess::open_or_create, \"shm\", 1024);
I\'m trying to build an app that uses boost libraries with Cygwin then later on deploy it on Linux box . I downloaded the latest version of boost, 1.46.1 then followed the instructions here http://www
I try to get this code running. I am almost there but I got stuck with the line: _f = std::bind1st( std::mem_fun(f, x);
I\'m using a boost::multi_index_container to provide a random access and a hash-based access to a collection of elements. I wanted to change the random access index of an element, without changing the
I am using the Boost headers in my project which is compiled by g++. I downloaded the Boost source and didn\'t build it so there are no library files to link.
I\'m trying to shoehorn in some boost::bind t开发者_如何学Pythono substitute member functions for straight up C function pointer style callbacks, but I\'m running into problems doing the obvious thing
I\'m working on a mult-threaded program, but have a UI component that makes extensive use of std::shared_ptr to manage elements. I can guarantee that only one thread will ever use these shared_ptrs.
I\'m trying to build and run the tutorial examples for Boost.log and getting a compiler error that has me stumped and could use some help. Basic details; I\'ve done a build of boost on OS X with boost
If I wish to use dynamic_cast with a shared_ptr I can use dynamic_pointer_cast. What do I use if I wish to cast an auto_ptr?I\'开发者_如何学Pythonm assuming something that would look like below.
I\'m aware of the \"hoisting\" pitfall of BOOST_FOREACH where it caches the end iterator. However it seems that: