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.
|
|
|
|
|
#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; // <20><>֧<EFBFBD><D6A7><EFBFBD><EFBFBD>
|
|
|
|
|
|
int BranchCountLeft; // <20><>֧<EFBFBD><D6A7><EFBFBD><EFBFBD>
|
|
|
|
|
|
double BranchAngle; // <20><>֧<EFBFBD>Ƕ<EFBFBD>
|
|
|
|
|
|
double BranchDistanceRight; // <20>Ҳഹֱ<E0B4B9><D6B1>ǰ<EFBFBD><C7B0>
|
|
|
|
|
|
double BranchDistanceLeft; // <20>Ҳഹֱ<E0B4B9><D6B1>ǰ<EFBFBD><C7B0>
|
|
|
|
|
|
double BranchLength; // ˮƽ<CBAE><C6BD><EFBFBD>γ<EFBFBD><CEB3><EFBFBD>
|
|
|
|
|
|
double BranchSpace; // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
|
};
|
|
|
|
|
|
|