www.pudn.com > subject_1_113294.rar > Polyline.h, change:2002-05-22,size:699b


// Polyline.h: interface for the CPolyline class. 
// 
////////////////////////////////////////////////////////////////////// 
 
#if !defined(AFX_POLYLINE_H__1F4CAD83_FEC5_438F_96FD_2861A86DC47E__INCLUDED_) 
#define AFX_POLYLINE_H__1F4CAD83_FEC5_438F_96FD_2861A86DC47E__INCLUDED_ 
 
#if _MSC_VER > 1000 
#pragma once 
#endif // _MSC_VER > 1000 
 
#include "Element.h" 
 
class CPolyline : public CElement   
{ 
public: 
	CPoint *PointList; 
	int PointNum; 
 
	CPolyline(); 
	CPolyline(int Num,CPoint *List); 
	virtual void DrawItem(CDC *pDC); 
	virtual void Serialize(CArchive &ar); 
	virtual ~CPolyline(); 
}; 
 
#endif // !defined(AFX_POLYLINE_H__1F4CAD83_FEC5_438F_96FD_2861A86DC47E__INCLUDED_)