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.
39 lines
779 B
C++
39 lines
779 B
C++
#pragma once
|
|
#ifndef WellAttributeData_h__
|
|
#define WellAttributeData_h__
|
|
|
|
namespace NChart
|
|
{
|
|
|
|
class AFX_EXT_CLASS CWellAttributeData :
|
|
public CObject
|
|
{
|
|
public:
|
|
CWellAttributeData(void);
|
|
virtual ~CWellAttributeData(void);
|
|
|
|
protected:
|
|
double m_dRadius;
|
|
CString m_strRadiusBindFild;
|
|
CPoint2D m_originPoint;
|
|
|
|
protected:
|
|
vector<double> m_vedPieValus;
|
|
vector<CString> m_vecPieValusFields;
|
|
vector<double> m_vecHistogramValues;
|
|
vector<CString> m_vecHistogramValuesFields;
|
|
double m_dMaxRadius;
|
|
int m_iPieValueCount;
|
|
int m_iPieValueSum;
|
|
|
|
public:
|
|
void InsertPieValue(double pieValue);
|
|
void InsertHistogramValue(double histogramValue);
|
|
double GetRadiusValue();
|
|
void setMaxRadius(double maxRadius);
|
|
};
|
|
|
|
}//namespace
|
|
|
|
#endif // WellAttributeData_h__
|