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.
37 lines
859 B
C++
37 lines
859 B
C++
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
//文件 CurveRange.h
|
|
//主要功能:
|
|
// 基础类库
|
|
//程序编写: 2005-12-07
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// CurveRange.h: interface for the CCurveRange class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#if !defined(AFX_CURVERANGE_H__A1915B0C_CFE0_4442_8944_99599490C983__INCLUDED_)
|
|
#define AFX_CURVERANGE_H__A1915B0C_CFE0_4442_8944_99599490C983__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
|
|
#include "Curve.h"
|
|
|
|
namespace NBase
|
|
{
|
|
|
|
class AFX_EXT_CLASS CCurveRange : public CCurve
|
|
{
|
|
public:
|
|
CCurveRange(int num);
|
|
CCurveRange();
|
|
virtual ~CCurveRange();
|
|
|
|
double xmin,xmax,ymin,ymax;
|
|
};
|
|
};
|
|
|
|
#endif // !defined(AFX_CURVERANGE_H__A1915B0C_CFE0_4442_8944_99599490C983__INCLUDED_)
|