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.
37 lines
781 B
C++
37 lines
781 B
C++
/*! @file
|
|
********************************************************************************
|
|
<PRE>
|
|
模块名 : NWell
|
|
文件名 : InterSpace.h
|
|
相关文件 :
|
|
文件实现功能: 井段间隔
|
|
作者 :
|
|
版本 :
|
|
--------------------------------------------------------------------------------
|
|
备注 :
|
|
--------------------------------------------------------------------------------
|
|
修改记录:
|
|
日期 版本 修改人 修改内容
|
|
2010/07/30
|
|
</PRE>
|
|
*******************************************************************************/
|
|
|
|
|
|
#if !defined(_INTERSPACE_H)
|
|
#define _INTERSPACE_H
|
|
|
|
namespace NWell
|
|
{
|
|
|
|
class CInterSpace {
|
|
public:
|
|
double m_dStartDepth;
|
|
double m_dEndLength;
|
|
int m_iBackColor;
|
|
String m_strBorder;
|
|
};
|
|
|
|
};
|
|
|
|
#endif //_INTERSPACE_H
|