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.
|
//
|
|
// @ Project : Well
|
|
// @ File Name : WellHead.h
|
|
// @ Date : 2010/7/30
|
|
// @ Author :
|
|
//
|
|
//
|
|
|
|
|
|
#if !defined(_WELLHEAD_H)
|
|
#define _WELLHEAD_H
|
|
|
|
|
|
class CWellHead {
|
|
public:
|
|
String m_strWellName;
|
|
double m_dX;
|
|
double m_dY;
|
|
double m_dBushingLevel;
|
|
double m_dDepth;
|
|
};
|
|
|
|
#endif //_WELLHEAD_H
|