Tianchi  v0.0.2 build 20130701
C++ library for Qt with VC & mingW
_tc_tuple_ns_ 命名空间参考

简单的 Tuple(元组) 模版类, 提供2~10个类型参数的模版 更多...

class  null_type
 

详细描述

简单的 Tuple(元组) 模版类, 提供2~10个类型参数的模版

作者
cnhem.nosp@m.iya@.nosp@m.gmail.nosp@m..com
日期
2013-05-25
示例:
int main()
{
demo.set0(99);
demo.set1(3.14);
cout << demo.get0() << endl;
cout << demo.get1() << endl;
}