
boost
aban-mtd
真诚、负责、踏实
展开
-
[boost][filesystem] 扫描给定目录下所有项
Boost的filesystem可以用来扫描给定目录下的所有项。原创 2015-03-14 19:13:06 · 1797 阅读 · 1 评论 -
[boost] Windows下编译
编译命令32位 编译bjam variant=release link=static threading=multi runtime-link=static -a -qbjam variant=debug link=static threading=multi runtime-link=static -a -qbjam variant=release link=static threading=原创 2015-09-29 19:39:18 · 1610 阅读 · 0 评论 -
[boost] build boost with intel compiler 16.0.XXX
IntroductionThere are few information about how to compile boost with Intel compiler. This article is to describe a simple command steps to let you get a boost library with Intel compiler support.Step原创 2015-12-05 03:29:32 · 2276 阅读 · 0 评论 -
[Boost] 1.57.0 with VS2013 + Intel compiler
The compiled version can be found below. Do not foget to give me a star. :)http://pan.baidu.com/s/1nu3bT0l原创 2015-12-25 16:18:56 · 2051 阅读 · 1 评论 -
[多线程] 生产者消费者模型的BOOST实现
说明如果 使用过程中有BUG 一定要告诉我:在下面留言或者给我邮件(sawpara at 126 dot com)使用boost::thread库来实现生产者消费者模型中的缓冲区!仓库内最多可以存放 capacity 个产品。条件变量 condition_put 标记是否可以往仓库中存放一个产品。条件变量 condition_get 标记是否可以从仓库中取出一个产品。互斥量 mutexer原创 2016-02-17 16:23:05 · 3236 阅读 · 1 评论 -
使用Boost program_options控制程序输入
简介很多人使用界面来输入数据,本文的程序介绍如何使用Boost的program_options控制输入。 程序中使用了: 1. 短选项 2. 可以指定多个参数的选项程序原创 2016-03-27 20:35:30 · 1129 阅读 · 0 评论 -
C++调用Matlab画图 V2.0
实现功能通过C++调用Matlab的接口来实现plot的部分功能。程序依赖代码依赖:Matlab,Eigen,Boost 测试版本:Matlab2015B,Eigen3.2.8,Boost1.57.0 适合人群:代码发烧友程序代码代码1:matlab.hpp#ifndef __MATLAB_HPP__#define __MATLAB_HPP__#include <engine.h>#inc原创 2016-05-03 23:06:26 · 8459 阅读 · 1 评论