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
696 B
C++
34 lines
696 B
C++
//////////////////////////////////////////////////////////////////////////////
|
|
//文件 CurveStation.h
|
|
//主要功能:
|
|
//
|
|
//程序编写: 2005-12-07
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#pragma once
|
|
#include ".\curvetv5.h"
|
|
|
|
namespace NTV
|
|
{
|
|
|
|
class AFX_EXT_CLASS CCurveStation :
|
|
public CCurveTV5
|
|
{
|
|
public:
|
|
CCurveStation(void);
|
|
virtual ~CCurveStation(void);
|
|
|
|
//在CCurveEx类中的x为速度,y是时间(TV对)
|
|
virtual int Read(CFile &fr, const short& ver);
|
|
virtual void Write(CFile& fw, const short& ver, double dRedundantError=-1.0);
|
|
void operator=(CCurveStation& curve);
|
|
|
|
double x0; //平面坐标x
|
|
double y0; //平面坐标y
|
|
double h0; //高程
|
|
};
|
|
|
|
}//namespace
|
|
|
|
|