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

📄 pointlist.h

📁 此程序实现了类似protel电路画图程序。
💻 H
字号:
// PointList.h: interface for the CPointList class.
//
//////////////////////////////////////////////////////////////////////
//#include "epoint.h"
#include "baselist.h"
#if !defined(AFX_POINTLIST_H__08F322A1_6312_11D4_BBD7_600000000ECD__INCLUDED_)
#define AFX_POINTLIST_H__08F322A1_6312_11D4_BBD7_600000000ECD__INCLUDED_

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

class CPointList : public CBaseList  
{
public:
	CPointList();
	virtual ~CPointList();
public:
	void		Draw(CDC* pDC);
	CBase*  	PtInGraph(CPoint point);
	void		Serialize(CArchive& ar);
	void		SetPosition();
	CBase*		GetObject(int number);
};

#endif // !defined(AFX_POINTLIST_H__08F322A1_6312_11D4_BBD7_600000000ECD__INCLUDED_)

⌨️ 快捷键说明

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