areaclass.h

来自「此文件可以能帮你求体积」· C头文件 代码 · 共 24 行

H
24
字号
// AreaClass.h: interface for the AreaClass class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_AREACLASS_H__A978D891_E235_4E82_ADB0_8AE2F46BA7E6__INCLUDED_)
#define AFX_AREACLASS_H__A978D891_E235_4E82_ADB0_8AE2F46BA7E6__INCLUDED_

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

class AreaClass  
{
public:
	AreaClass( double x = 0, double y = 0 );
	virtual ~AreaClass();

protected:
	double width;
	double height;
};

#endif // !defined(AFX_AREACLASS_H__A978D891_E235_4E82_ADB0_8AE2F46BA7E6__INCLUDED_)

⌨️ 快捷键说明

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