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
769 B
C++
29 lines
769 B
C++
#pragma once
|
|
#include "WellDataObj.h"
|
|
|
|
/******************************************************
|
|
|
|
离散数据结构
|
|
|
|
******************************************************/
|
|
|
|
class AFX_EXT_CLASS CWellDataObj_Discrete : public CWellDataObj
|
|
{
|
|
public:
|
|
// Constructors
|
|
CWellDataObj_Discrete();
|
|
virtual ~CWellDataObj_Discrete();
|
|
virtual void Clear(BOOL bRelease=TRUE);
|
|
virtual int GetCount();
|
|
virtual void Serialize(CArchive& ar);
|
|
virtual void operator =(CWellDataObj_Discrete &data);
|
|
virtual void Copy(CWellDataObj_Discrete &data, BOOL bCopy=TRUE);
|
|
|
|
public:
|
|
CString m_strName; // 数据名称
|
|
int m_nDataCount; // 数据大小
|
|
float *m_fDataArr; // 数值
|
|
float *m_fDepth; // 对应的深度值
|
|
double m_minvalue; // 最小值
|
|
double m_maxvalue; // 最大值
|
|
}; |