码迷,mamicode.com
首页 >  
搜索关键字:boost    ( 1957个结果
boost::interprocess(1)
发送端:#include #include #include using namespace std;#include #include #include using namespace boost::interprocess;int num = 0;mapped_region *mp_r;void...
分类:其他好文   时间:2014-05-15 16:05:06    阅读次数:258
Boost.Asio技术文档
Christopher KohlhoffCopyright ? 2003-2012 Christopher M. Kohlhoff以Boost1.0的软件授权进行发布(见附带的LICENSE_1_0.txt文件或从http://www.boost.org/LICENSE_1_0.txt)Boost....
分类:其他好文   时间:2014-05-15 15:54:04    阅读次数:493
boost事件处理
很多开发者在听到术语'事件处理'时就会想到GUI:点击一下某个按钮,相关联的功能就会被执行。 点击本身就是事件,而功能就是相对应的事件处理器。 这一模式的使用当然不仅限于GUI。 一般情况下,任意对象都可以调用基于特定事件的专门函数。 本章所介绍的 Boost.Signals 库提供了一个简单的方法在 C++ 中应用这一模式。 严格来说,Boost.Function 库也可以用于事件处理。 不过,Boost.Function 和 Boost.Signals 之间的一个主要区别在于,Boost.Signa...
分类:其他好文   时间:2014-05-14 15:17:13    阅读次数:277
boost::interprocess(2)
//doc_anonymous_mutex_shared_data.hpp#include struct shared_memory_log{ enum { NumItems = 100 }; enum { LineSize = 100 }; shared_memory_log()...
分类:其他好文   时间:2014-05-14 10:38:00    阅读次数:343
boost::bind
bind并不是一个单独的类或函数,而是非常庞大的家族,依据绑定的参数个数和要绑定的调用对象类型,总共有十个不同的形式,但它们的名字都叫bind. bind接受的第一个参数必须是一个可调用对象f,包括函数,函数指针,函数对象和成员函数,之后bind接受最多9个参数,参数的数量必须与f的参数数量相等 _...
分类:其他好文   时间:2014-05-14 08:50:09    阅读次数:348
boost的posix_time用法详解01
// boost_time.cpp : 定义控制台应用程序的入口点。 //made by davidsu33 //2014-5-11 //the usage of posix_time #include "stdafx.h" #include #include #include using namespace std; #define SHOW_VARIABLE(x){ cou...
分类:其他好文   时间:2014-05-13 09:12:49    阅读次数:656
boost::archive::binary_iarchive
#include #include #include #include #include #include #include #include #include #include using namespace std;struct MyStruct{ string stru; int ...
分类:其他好文   时间:2014-05-12 21:51:09    阅读次数:572
简单编写makefile文件,实现GCC4.9编译项目,加入boost库测试等等。。
一、需要用到的几个测试文件...
分类:其他好文   时间:2014-05-12 15:34:53    阅读次数:319
edb-linux下的od
偶尔看见,贴一下编译过程需要boost和qt4(必须是动态的,静态编译的话,他的so库全部会编译为静态库……)sudo apt-get install libboost-devqmakemake INSTALL_ROOT=/home/用户名/tools/edb install
分类:数据库   时间:2014-05-12 09:44:59    阅读次数:475
boost日期用法
// boost2.cpp : 定义控制台应用程序的入口点。 //boost gregorian_date usage //made by davidsu33 2014-5-10 #include "stdafx.h" #include #include #include #include #include using namespace std...
分类:其他好文   时间:2014-05-11 03:46:57    阅读次数:814
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!