📄 random.h
字号:
// Random.h: interface for the CRandom class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_RANDOM_H__1B175428_3C0D_40BC_8440_26FE7C8FB673__INCLUDED_)
#define AFX_RANDOM_H__1B175428_3C0D_40BC_8440_26FE7C8FB673__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "Shape1.h"
#include "Afxtempl.h"
class CRandom : public CShape
{DECLARE_SERIAL(CRandom)
public:
virtual void Serialize(CArchive& ar);
virtual void SetPen(int lt, UINT pw, COLORREF cl);
virtual void SetPoint(CPoint pt1, CPoint pt2);
virtual void Draw(CDC *pDC);
CRandom();
virtual ~CRandom();
CArray <CPoint,CPoint> m_ptArray1;
CArray <CPoint,CPoint> m_ptArray2;
};
#endif // !defined(AFX_RANDOM_H__1B175428_3C0D_40BC_8440_26FE7C8FB673__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -