fillpat.h

来自「一个复杂的画图系统」· C头文件 代码 · 共 27 行

H
27
字号
// FillPat.h: interface for the FillPat class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_FILLPAT_H__7B24D580_32E8_11D4_9B7A_0000B45DD4B6__INCLUDED_)
#define AFX_FILLPAT_H__7B24D580_32E8_11D4_9B7A_0000B45DD4B6__INCLUDED_

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

#include "Shape.h"

class FillPat : public CShape  
{
public:
	void Serialize(CArchive& ar);
	void Draw(CDC *pDC);
	FillPat();
	CPoint fillpt;
	FillPat(CPoint &pt,unsigned int m_curColor);
	virtual ~FillPat();

};

#endif // !defined(AFX_FILLPAT_H__7B24D580_32E8_11D4_9B7A_0000B45DD4B6__INCLUDED_)

⌨️ 快捷键说明

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