头文件
/**
* 功能:句柄类,头文件只包含公共的接口和单一的指针,该指针指向一个没有
完全定义的类
* 时间: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需要每次进行配置,有点麻烦,可以直接基于CWND派生一个OpenGL类,在需要的时候直接用就可以了。下面附赠上这样一个类,其中删掉了我项目具体绘制的一些东西,如有错误不能用请联系我~~~
h文件:
#if !defined(AFX_OPENGL_H__38B5D1C8_2DFF_4A7D_9A99_3AC401C19D72__INCLUDED_)
#define AFX...
分类:
其他好文 时间:
2014-08-21 17:13:34
阅读次数:
230
头文件
/**
* 功能:下推栈(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
// 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
/**
* 功能:一个袖珍的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
头文件
/**
* 功能:输出移位运算符的操作
* 时间: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
这个是编译器编译顺序的问题, 是你将#include放在其它包含文件的后面了。你搜下这个文件,全部放在最前面就好了。fatal error C1189: #error: WINDOWS.H already included. MFC apps must notinclude 在windows con...
第三讲扩展库使用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
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
给对话框添加类, 报错CalibrateMFCDlg.h(6) : error C2504: “CDialog”: 未定义基类等多个错误加上 #include "afxwin.h" 就会包如上错误fatal error C1189: #error : WINDOWS.H already includ...
分类:
移动开发 时间:
2014-08-04 10:29:56
阅读次数:
396