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.
//////////////////////////////////////////////////////////////////////////////
//文件: SegY格式文件操作
//主要功能:
//
//程序编写:
//日期:2005-12-07
/////////////////////////////////////////////////////////////////////////////
#pragma once
#include "formatitem.h"
class AFX_EXT_CLASS CFormat
{
public:
CFormat(void);
~CFormat(void);
int Initial(void);
int GetParameter(CString name, CFormatItem& item);
void WriteDataMode(CString name);
void CreateDefault(void);
void operator=(CFormat& format);
CString mxnFile;
CStringArray array;
};