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.

33 lines
640 B
C++

This file contains ambiguous Unicode characters!

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);
};
};