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.

29 lines
557 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.

//////////////////////////////////////////////////////////////////////////////
//文件: 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;
};