📄 line.h
字号:
// Line.h: interface for the CLine class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_LINE_H__8B41EDA1_BEEC_11D4_A58C_A06ECA87E571__INCLUDED_)
#define AFX_LINE_H__8B41EDA1_BEEC_11D4_A58C_A06ECA87E571__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CLine : public CObject
{
DECLARE_SERIAL(CLine)
public:
CPoint m_ptStart;
CPoint m_ptEnd;
CLine();
CLine(CPoint pt1, CPoint pt2);
virtual ~CLine();
void Draw(CDC *pDC);
};
#endif // !defined(AFX_LINE_H__8B41EDA1_BEEC_11D4_A58C_A06ECA87E571__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -