So I try to port some Boost.Extension samples for standart IDEs - to make tham free from BJAM and to be able to work with them in standard ways across platforms.
To check my C++ code, I would like to be able to let Boost::Random and Matlab produce the same random numbers.
Boost.Log supports configurable file name, e.g. %Y_%m_%d_sample_%N.log. What I want is put them in diff开发者_运维知识库erent folders, say, \"%Y_%m_%d/sample_%N.log\", but it created a folder named \"
So I for example love Boost and all related to it so I found for my self some Boost.Extension and Boost.Reflection with one sample on how to use them. Which I can compile inside under VS2008 but it fa
I am using a boost::ptr_vector < class A > , which I also use to store objects of class B : public class A. I want to be able to access the class B obje开发者_如何学Gocts in the vector; how do I ca
I\'m using boost::interprocess::shared_memory_object between the processes. A process (server) creates a shared memory object, and other processes (clients) open that shared memory object. But, how c
So we have a parent like somepath/** so if any one sends to us somepath/myfolder/file we would receive true and if we would receive someotherpath/ we would get false. So how to find out if a p开发者_S
Environment: Ubuntu Maverick (10.10), libboost v1.42, Intel X5680 processors Issue: When using boost::ref in conjunction with boost::thread and boost::thread_group, a segmentation fault appear after
I am trying to modify a current MFC application running on Windows NT4 to use boost libraries for ethernet communcications (originally, it used CommX for serial) and general increased performance, eff
This is my code: path Path = \"e:\\\\Documents\\\\\"; boost::regex reg(\"(*.pdf)\"); for(recursive_directory_iterator it(Path); it != recursive_directory_iterator(); ++it)