ellipse.h

来自「数据库开发」· C头文件 代码 · 共 21 行

H
21
字号
// Ellipse.h: interface for the CEllipse class.
//
//////////////////////////////////////////////////////////////////////

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "DrawElement.h"

class CEllipse:public CDrawElement 
{
//    DECLARE_DYNAMIC(CEllipse)
    DECLARE_SERIAL(CEllipse)
public:
	void Draw(CDC* pDC);
	void ShowProperties();
	CEllipse();
	virtual ~CEllipse();
	void Serialize(CArchive & ar);
};

⌨️ 快捷键说明

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