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.

34 lines
723 B
C++

#ifndef INTRACKBURY_H
#define INTRACKBURY_H
#pragma once
//////////////////////////////////////////////////////////////////////////////
//主要功能:
// 道内埋深符号类
/////////////////////////////////////////////////////////////////////////////
//埋深符号对象
class AFX_EXT_CLASS CInTrackBury : public CInTrackDepthSegment
{
public:
CInTrackBury();
CInTrackBury(const CRect8& position);
CLONE_WELLOBJECT(CInTrackBury)
virtual void operator=(CInTrackBury& object);
// Implementation
public:
virtual void Draw(CXyDC* pDC);
protected:
void Init();
public:
virtual int ReadPCG_SelfData(CKXmlParse& xp, const short& ver, CTrackObj* pTrack);
virtual void WritePCG_SelfData(CFile &fw, int nBaseTabNum);
};
#endif