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.
32 lines
714 B
C++
32 lines
714 B
C++
#pragma once
|
|
|
|
class AFX_EXT_CLASS CReadDraw
|
|
{
|
|
public:
|
|
CReadDraw(void);
|
|
~CReadDraw(void);
|
|
|
|
//列表中生成的为CCurve*对象
|
|
int ReadCurveAll(CString m_input, CPtrList& CurveList);
|
|
void ClearCurveList(CPtrList& curveList);
|
|
|
|
int ReadCurveAll(CString m_input, CMap<int,int,void *,void *> & CurveMap);
|
|
int ReadLayer(CString& line);
|
|
int ReadSuperLink(CFile& fr, CString& line);
|
|
|
|
//返回曲线指针CCurve*
|
|
void* ReadCurve(CFile& fr, CString& line);
|
|
|
|
int IsSkip(CString& line);
|
|
int IsSuperLink(CString& line);
|
|
int IsCurve(CString& line);
|
|
|
|
void* ReadCalibrate(CString m_input);
|
|
//void* GetCalibrate(CString m_input,int state);
|
|
|
|
protected:
|
|
int IsNew;
|
|
int ReadNew(CString& line);
|
|
int ReadDisplay(CString& line);
|
|
};
|