class CStroke:public CObject
{
public:
CStroke(UINT nPenWidth);protected:
CStroke();
DECLARE_SERIAL(CStroke);//Attributes
protected:
UINT m_nPenWidth;//one pen width applies to entire strokepublic:

CArray<CPoint,CPoint>m_pointArray;//《 -------------------错误//Operations
public:
BOOL DrawStroke(CDC* pDC);
public:
virtual void Serialize(CArchive& ar);
};