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.
|
|
|
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
//<2F>ļ<EFBFBD> ContourCreate.h
|
|
|
|
|
|
//<2F><>Ҫ<EFBFBD><D2AA><EFBFBD><EFBFBD>:
|
|
|
|
|
|
// <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
|
//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>д: 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; //Ϊ<><CEAA><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD><C4BC><EFBFBD>д<EFBFBD><D0B4><EFBFBD><EFBFBD>
|
|
|
|
|
|
PFUN_CONTOUR_ADD_CRUVE m_pFunAddCurve; //Ϊ<><CEAA><EFBFBD>ڴ<EFBFBD><DAB4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
|
CString GetLayer(void);
|
|
|
|
|
|
int m_bMarkLayer;
|
|
|
|
|
|
CString m_strMarkLayer;
|
|
|
|
|
|
CString m_strOtherLayer;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
using namespace NContour;
|