?? line.h
字號:
// Line.h: interface for the CLine class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_LINE_H__9A58F7B7_93F6_11D9_B9DA_00E04CB1BB02__INCLUDED_)
#define AFX_LINE_H__9A58F7B7_93F6_11D9_B9DA_00E04CB1BB02__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CLine : public CObject
{
DECLARE_SERIAL(CLine)
public:
int GetNext();
void SetNext(int i);
int GetStatus();
void Empty();
bool isempty();
void Serialize(CArchive & ar);
void DrawLine(CDC * pdc);
CLine(CPoint pt1,CPoint pt2);
CLine();
virtual ~CLine();
private:
int m_next;
int m_status;
CPoint m_pt2;
CPoint m_pt1;
};
#endif // !defined(AFX_LINE_H__9A58F7B7_93F6_11D9_B9DA_00E04CB1BB02__INCLUDED_)
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -