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
594 B
C++
26 lines
594 B
C++
//////////////////////////////////////////////////////////////////////////////
|
|
//文件 CurveForInName.h
|
|
//主要功能: 为了使用鼠标移动曲线名称
|
|
//
|
|
//程序编写: 2005-12-07
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#pragma once
|
|
#include "curveex.h"
|
|
|
|
class AFX_EXT_CLASS CCurveForInName :
|
|
public CCurveEx
|
|
{
|
|
public:
|
|
CCurveForInName(void);
|
|
CCurveForInName(int n);
|
|
virtual ~CCurveForInName(void);
|
|
|
|
void operator=(CCurveForInName& curve);
|
|
|
|
double l0;
|
|
double dl;
|
|
CCurveEx* m_pParentCurve;
|
|
virtual BOOL IsInRange(CRect8& range, void *HowToViewCurve = NULL);
|
|
};
|