📄 ieintimage.h
字号:
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -