This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
//////////////////////////////////////////////////////////////////////////////
//文件 GeoFrameMap.h
//主要功能:
// 将GeoFrame的明码MAP格式转换为双狐格式
//GeoFrame的格式有网格(grd、svs)、断层多边形(flt)、图形格式(map)等格式
//
//程序编写: 2010-7-13
/////////////////////////////////////////////////////////////////////////////
#pragma once
#include "otherformat.h"
namespace NFormatReader
{
class CGeoFrameMap :
public COtherFormat
public:
CGeoFrameMap(void);
~CGeoFrameMap(void);
BOOL Read(LPCTSTR lpszPathName);
protected:
int ReadCurve(CFile& fr, int pointNum, double h, int id, BOOL bSetCurveName);
};