📄 rect.h
字号:
#ifndef __CRECT__INCLUDED_H_#define __CRECT__INCLUDED_H_#ifndef __ATLTYPES_H__#include <cubicles.h>// ----------------------------------------------------------------------// class CRect// ----------------------------------------------------------------------class CRect { public: CRect() : left(-1), top(-1), right(-1), bottom(-1) {}; CRect(int _left, int _top, int _right, int _bottom) : left(_left), top(_top), right(_right), bottom(_bottom) {}; CRect(const CuScanMatch& m) : left(m.left), top(m.top), right(m.right), bottom(m.bottom) {}; public: int left, top, right, bottom;};#endif // __ATLTYPES_H__#endif // __CRECT__INCLUDED_H_
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -