码迷,mamicode.com
首页 >  
搜索关键字:included    ( 465个结果
OpenWRT系统MT7620N芯片的无线BSSID问题
BSSID的值是路由器无线MAC地址,具体相信IEEE 802.11规范。 MAC地址在路由器上存储位置一半为Factory/factory分区的第四个字节(从0开始),小端字节序。 The BSSID included in the MAC Header transmitter address field of a Beacon frame when the multiple BSSID...
分类:其他好文   时间:2014-05-21 09:59:36    阅读次数:326
在Win32控制台程序中使用CString
进入Project->Settings->General 下,在下拉框中选“Use MFC in a Static Library”(使用MFC做为静态链接库);然后添加头文件#include ,并且要放在其它头文件前。否则,会有#error : WINDOWS.H already included...
分类:Windows程序   时间:2014-05-19 20:42:44    阅读次数:317
C++ Primer 学习笔记_74_面向对象编程 --再谈文本查询示例[续/习题]
面向对象编程--再谈文本查询示例[续/习题]//P522 习题15.41 //1 in TextQuery.h #ifndef TEXTQUERY_H_INCLUDED #define TEXTQUERY_H_INCLUDED #include #include #include #include #include #include #include #include usin...
分类:编程语言   时间:2014-05-18 18:41:59    阅读次数:454
Algorithms(字典树)
字典树 #ifndef TIRE_H_INCLUDED #define TIRE_H_INCLUDED /* ** 字典树 */ #define MAX 26 typedef struct Node { int num; struct Node* next[MAX]; }Tire; /* ** 创建一个节点 */ Tire* create(void); /* *...
分类:其他好文   时间:2014-05-16 02:52:23    阅读次数:246
Algorithms(线段树)
线段树 #ifndef LINETREE_H_INCLUDED #define LINETREE_H_INCLUDED typedef struct Node { int i, j; // 表示线段树区间[i, j] int cover; // 表示区间被覆盖的次数 stru...
分类:其他好文   时间:2014-05-16 01:54:46    阅读次数:234
模板具体化
#ifndef SWAP_H_INCLUDED#define SWAP_H_INCLUDED#include using namespace std;struct Job{ string name; int salary;};template void Swap(T &a, T &b);...
分类:其他好文   时间:2014-05-16 01:14:38    阅读次数:340
Reading vmstat in linux – Part 1
Linuxcomeswithmanytoolstoenableadministratorstoevaluatetheperformanceofasystem.Oneoftheseveryusefultoolsisvmstat.VmstatisavailableonmostunixdistributionsandisincludedbydefaultonmanymodernLinuxdistributions.AswithmostLinuxcommands,builtinhelpisavailableviath..
分类:系统相关   时间:2014-05-11 19:39:38    阅读次数:680
编译安装shibboleth-sp遇到的问题
In file included from mod_shib_20.cpp:68: mod_shib.cpp:118: warning: deprecated conversion from string constant to 'char*' mod_shib.cpp: In member function 'virtual const char* ShibTargetApache::get...
分类:其他好文   时间:2014-05-07 06:04:50    阅读次数:363
The highly anticipated Jordan 6s Carmine will be return
Last seen only a couple of years back, this approaching discharge of theJordan 6 Carminewill arrive just like they did included in the 2008 Countdown ...
分类:其他好文   时间:2014-05-07 01:50:27    阅读次数:264
离线缓存之RNCachingURLProtocol解析
主要功能:实现 网页离线加载。基本思想来源于AFCache。作者是Rob Napier(IOSX Programming的作者)。使用方法:To build, you will need the Reachability code from Apple (included). That requir...
分类:其他好文   时间:2014-05-04 20:32:05    阅读次数:1699
465条   上一页 1 ... 44 45 46 47 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!