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.
34 lines
719 B
C++
34 lines
719 B
C++
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
//文件 ContourCreate.h
|
|
//主要功能:
|
|
// 基础类库
|
|
//程序编写: 2005-12-07
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
#pragma once
|
|
#include "curve.h" // Added by ClassView
|
|
|
|
namespace NContour
|
|
{
|
|
|
|
typedef POSITION (* PFUN_CONTOUR_ADD_CRUVE)(CCurve* pCurve, CString strLayer);
|
|
|
|
class AFX_EXT_CLASS CContourCreate
|
|
{
|
|
public:
|
|
CContourCreate(void);
|
|
virtual ~CContourCreate(void);
|
|
|
|
FILE* fw; //为了向文件中写曲线
|
|
PFUN_CONTOUR_ADD_CRUVE m_pFunAddCurve; //为了内存中增加曲线
|
|
CString GetLayer(void);
|
|
int m_bMarkLayer;
|
|
CString m_strMarkLayer;
|
|
CString m_strOtherLayer;
|
|
};
|
|
|
|
};
|
|
using namespace NContour;
|