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

📄 circle.h

📁 dll的一些学习资料
💻 H
字号:
// circul.h: interface for the circul class.
//
//////////////////////////////////////////////////////////////////////

#ifndef CIRCLE_H
#define CIRCLE_H

#include "point.h"	
#ifdef DLL_FILE
class _declspec(dllexport) circle  //导出类circle
#else
class _declspec(dllimport) circle  //导入类circle
#endif
{
public:
	void SetCentre(const point &centrePoint);
	void SetRadius(float r);
	float GetGirth();
	float GetArea();
	circle();
private:
	float radius;
	point centre;
};

#endif 

⌨️ 快捷键说明

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