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.
26 lines
644 B
C++
26 lines
644 B
C++
#pragma once
|
|
#include ".\xmlparse.h"
|
|
|
|
class AFX_EXT_CLASS CWellGroupParameter
|
|
{
|
|
public:
|
|
CWellGroupParameter();
|
|
|
|
virtual void Serialize(CArchive& ar, const short &ver);
|
|
|
|
int ParseDML(CXmlParse& xp, const short &ver);
|
|
void WriteDML(CFile &fw, const short& ver, int nBaseTabNum);
|
|
|
|
void Write(CFile& fw, const short& ver);
|
|
int Read(CFile& fr, const short& ver);
|
|
public:
|
|
int BranchCountRight; // 井支数量
|
|
int BranchCountLeft; // 井支数量
|
|
double BranchAngle; // 井支角度
|
|
double BranchDistanceRight; // 右侧垂直靶前距
|
|
double BranchDistanceLeft; // 右侧垂直靶前距
|
|
double BranchLength; // 水平井段长度
|
|
double BranchSpace; // 井间距
|
|
};
|
|
|