📄 myshape.h
字号:
// Shape.h: interface for the CShape class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(_SHAPE_H_)
#define _SHAPE_H_
#include "myColor.h" // Added by ClassView
#include "AEEGraphics.h"
#include "AEEShell.h"
#include "AEEStdLib.h"
class CShape
{
public:
const CColor* getClr() const;
CShape(CColor Clr);
virtual boolean draw(IGraphics *pg) =0;
CShape();
virtual ~CShape() =0;
private:
CColor m_Clr;
};
#endif // !defined(AFX_SHAPE_H__617F9B5E_6214_4A5C_AAAF_734D718C832D__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -