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.
28 lines
697 B
C++
28 lines
697 B
C++
#pragma once
|
|
#include "WellDataObj.h"
|
|
|
|
/***************************************************
|
|
井位数据结构
|
|
**************************************************/
|
|
class AFX_EXT_CLASS CWellDataObj_Position : public CWellDataObj
|
|
{
|
|
public:
|
|
// Constructors
|
|
CWellDataObj_Position();
|
|
virtual ~CWellDataObj_Position();
|
|
|
|
public:
|
|
CString m_strWell; //井号
|
|
CString m_strArea; //区块
|
|
double m_fX; //横坐标
|
|
double m_fY; //纵坐标
|
|
double m_fAltitude; //补心海拔
|
|
double m_fHeight; //补心高度
|
|
double m_fWellEnd; //完钻井深
|
|
CString m_strWellType; //井别
|
|
// Operations
|
|
public:
|
|
virtual void Serialize(CArchive& ar);
|
|
virtual void operator = (CWellDataObj_Position &data);
|
|
};
|