You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
660 B
C++

//////////////////////////////////////////////////////////////////////////////
//Îļþ CurveMark.h
//Ö÷Òª¹¦ÄÜ:
//
//³ÌÐò±àд: 2005-12-07
/////////////////////////////////////////////////////////////////////////////
#pragma once
class AFX_EXT_CLASS CCurveMark
{
public:
CCurveMark();
virtual ~CCurveMark();
int Create(int num);
void Clear();
void GetMark();
virtual void Serialize(CArchive& ar, const short &ver);
virtual int Read(CFile &fr, const short& ver);
virtual void Write(CFile &fw, const short& ver);
void operator=(CCurveMark& cm);
CSize8 m_size;
double *location;
int num,angle;
CStringArray m_markArray;
CPtrList m_ptrMark;
};