⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 circle.h

📁 Viewdraw 30
💻 H
字号:
// Circle.h: interface for the CCircle class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_CIRCLE_H__9E49063A_B752_48CC_847E_ADEB0819948F__INCLUDED_)
#define AFX_CIRCLE_H__9E49063A_B752_48CC_847E_ADEB0819948F__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#include "Object1.h"

class CCircle : public CObject1  
{
	DECLARE_SERIAL(CCircle)
public:
	void Serialize(CArchive &ar);
	virtual void GetPoint(CPoint pt1,CPoint pt2);
	virtual void Draw(CDC*pDC);
	CCircle();
	virtual ~CCircle();
private:
	CPoint m_ptEndC;
	CPoint m_ptFirstC;

};

#endif // !defined(AFX_CIRCLE_H__9E49063A_B752_48CC_847E_ADEB0819948F__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -