码迷,mamicode.com
首页 >  
搜索关键字:included    ( 465个结果
【ThinkingInC++】32、一个句柄类
头文件 /** * 功能:句柄类,头文件只包含公共的接口和单一的指针,该指针指向一个没有 完全定义的类 * 时间:2014年8月25日07:52:42 * 作者:cutter_point */ #ifndef HANDLE_H_INCLUDED #define HANDLE_H_INCLUDED class Handle { struct Cheshire; //...
分类:编程语言   时间:2014-08-25 10:07:34    阅读次数:240
OpenGL在MFC中的使用总结(二)
有些时候用到OpenGL需要每次进行配置,有点麻烦,可以直接基于CWND派生一个OpenGL类,在需要的时候直接用就可以了。下面附赠上这样一个类,其中删掉了我项目具体绘制的一些东西,如有错误不能用请联系我~~~ h文件: #if !defined(AFX_OPENGL_H__38B5D1C8_2DFF_4A7D_9A99_3AC401C19D72__INCLUDED_) #define AFX...
分类:其他好文   时间:2014-08-21 17:13:34    阅读次数:230
【ThinkingInC++】26、下推栈(push_down stack)不会越出内存
头文件 /** * 功能:下推栈(push_down stack)不会越出内存 * 时间:2014年8月18日08:13:36 * 作者:cutter_point */ #ifndef STACK_H_INCLUDED #define STACK_H_INCLUDED struct Stack { struct Link { void* data; //这个结构...
分类:编程语言   时间:2014-08-18 09:18:33    阅读次数:326
Opencv——彩色图像转成灰度图像
// PS_Algorithm.h #ifndef PS_ALGORITHM_H_INCLUDED #define PS_ALGORITHM_H_INCLUDED #include #include #include "cv.h" #include "highgui.h" #include "cxmat.hpp" #include "cxcore.hpp" u...
分类:其他好文   时间:2014-08-17 10:28:22    阅读次数:205
【ThinkingInC++】23、一个袖珍的C库
/** * 功能:一个袖珍的C库 * 时间:2014年8月17日08:05:26 * 作者:cutter_point */ //这个头文类似一个C的库 #ifndef CLIB_H_INCLUDED #define CLIB_H_INCLUDED typedef struct CStashTag { int size; //每个小空间的大小 int quantit...
分类:编程语言   时间:2014-08-17 08:07:51    阅读次数:234
【ThinkingInC++】13、输出移位运算符的操作
头文件 /** * 功能:输出移位运算符的操作 * 时间:2014年8月12日20:01:32 * 作者:cutter_point */ #ifndef PRINTBINARY_H_INCLUDED #define PRINTBINARY_H_INCLUDED #include using namespace std; void printBinary(const unsigned cha...
分类:编程语言   时间:2014-08-12 22:15:04    阅读次数:271
Error : WINDOWS.H already included.
这个是编译器编译顺序的问题, 是你将#include放在其它包含文件的后面了。你搜下这个文件,全部放在最前面就好了。fatal error C1189: #error: WINDOWS.H already included. MFC apps must notinclude 在windows con...
分类:Windows程序   时间:2014-08-08 09:37:55    阅读次数:318
perl C/C++ 扩展(三)
第三讲扩展库使用c++实现,在调用函数后,返回对象变量,perl 能正确使用所有对象成员使用h2xs 命令生成初始文件h2xs -A -n three_test登录目录cd three_testc++ 头文件#ifndef INCLUDED_DUCK_H#define INCLUDED_DUCK_H...
分类:编程语言   时间:2014-08-07 21:57:50    阅读次数:340
Sharepoint 2013 user permissions(用户权限)
Read: This permission level gives you read-only access to the website.Contribute: In addition to all the permissions included in the Read permission l...
分类:其他好文   时间:2014-08-04 17:30:47    阅读次数:212
fatal error C1189: #error : WINDOWS.H already included. MFC apps must not #include <windows.h>
给对话框添加类, 报错CalibrateMFCDlg.h(6) : error C2504: “CDialog”: 未定义基类等多个错误加上 #include "afxwin.h" 就会包如上错误fatal error C1189: #error : WINDOWS.H already includ...
分类:移动开发   时间:2014-08-04 10:29:56    阅读次数:396
465条   上一页 1 ... 41 42 43 44 45 ... 47 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!