ieintimage.h

来自「很珍贵得视频编辑器原码及CODEC。需要安装下列CODEC.可播放多种格式的视频」· C头文件 代码 · 共 26 行

H
26
字号
// IEIntImage.h: interface for the IEIntImage class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(_IEINTIMAGE_H_)
#define _IEINTIMAGE_H_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#include "IEImage.h"

class IEIntImage : public IEImage< int >
{
public:
	IEIntImage() : IEImage< int > () {}
	IEIntImage(int w, int h) : IEImage< int > (w, h) {}
	
public:
//	BOOL        FromDib(IEDib* pDib);

};

#endif // !defined(_IEINTIMAGE_H_)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?