- 浏览: 265504 次
- 性别:
- 来自: 武汉
最新评论
-
daknife:
谢谢你的这篇文章,让我大概了解了select的一部分底层原理。 ...
Linux-2.6.25 select系统调用源码分析 -
gjlzjb:
非常有用,谢谢哈。另外问下,您是否用过Pheonix Syst ...
Why Map/Reduce? -
zhangyafei_kimi:
canbo 写道请问,我怎么生成安装包,提供给其它用户安装呢? ...
下载最新的Google Chrome源码并编译 -
canbo:
请问,我怎么生成安装包,提供给其它用户安装呢?
下载最新的Google Chrome源码并编译
文章列表
Source
#include <boost/config.hpp>
#include <boost/detail/workaround.hpp>
//
namespace kimi_boost
{
//这个模板类只有声明,没有定义
//注意:这里没有
- 2007-08-24 22:49
- 浏览 1363
- 评论(0)
Source
#include <cstddef>
#include <stdexcept>
#include <boost/assert.hpp>
// Handles broken standard libraries better than <iterator>
#include <boost/detail/iterator.hpp>
#include <boost/throw_exception.hpp>
#include <algorithm>
- 2007-08-24 22:45
- 浏览 1293
- 评论(0)
boost.any源码整理和使用说明
- 博客分类:
- C and C++
Source
#include <algorithm>
#include <typeinfo>
#include "boost/config.hpp"
#include <boost/type_traits/remove_reference.hpp>
#include <boost/type_traits/is_reference.hpp>
- 2007-08-24 22:44
- 浏览 2090
- 评论(0)
#ifndef __KIMI_BOOST_ARRAY2#define __KIMI_BOOST_ARRAY2
#pragma once#include <cstddef> //size_t#include <exception>//exception#include <iterator>//random_access_iterator_tag,reverse_iteratornamespace kimi_boost{
template <class T> class array2;//forward declaration
//iterato ...
- 2007-07-22 18:05
- 浏览 1526
- 评论(0)