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.
|
#pragma once
|
|
#include "curveex.h"
|
|
|
|
class CLogCurve :
|
|
public CCurveEx
|
|
{
|
|
public:
|
|
CLogCurve(void);
|
|
virtual ~CLogCurve(void);
|
|
|
|
double m_amin; //测井曲线显示时的最小与最大值
|
|
double m_amax;
|
|
|
|
CRect8 m_rect; //测井曲线显示在该范围内
|
|
};
|