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.
25 lines
557 B
C++
25 lines
557 B
C++
#ifndef WSECFIGURE_H
|
|
#define WSECFIGURE_H
|
|
#pragma once
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
//Îļþ Figure.h
|
|
//Ö÷Òª¹¦ÄÜ:
|
|
// ÎÄ×ÖÃèÊö
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
class AFX_EXT_CLASS CMWSectionFigure : public CWellBaseObj
|
|
{
|
|
public:
|
|
CMWSectionFigure(void);
|
|
~CMWSectionFigure(void);
|
|
public:
|
|
double m_fTotal;
|
|
double m_fOil;
|
|
CString m_strFigureName;
|
|
public:
|
|
virtual void Serialize(CArchive& ar, const short &ver);
|
|
virtual void Draw(CXyDC* pDC);
|
|
|
|
};
|
|
|
|
#endif |