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.

41 lines
969 B
C

1 month ago
//////////////////////////////////////////////////////////////////////////////
//<2F>ļ<EFBFBD> CrossPoint.h
/////////////////////////////////////////////////////////////////////////////
// CrossPoint.h: interface for the CCrossPoint class.
//
//////////////////////////////////////////////////////////////////////
#ifndef AFX_EXT_CLASS
#define AFX_EXT_CLASS Q_DECL_IMPORT
#endif
#if !defined(AFX_CROSSPOINT_H__6610109F_05BA_40E7_87E4_AE03DBDA3D62__INCLUDED_)
#define AFX_CROSSPOINT_H__6610109F_05BA_40E7_87E4_AE03DBDA3D62__INCLUDED_
#if (_MSC_VER > 1000)||(!defined(_MSC_VER))
#pragma once
#endif // _MSC_VER > 1000
//#include "Vector.h"
//class CCrossPoint : public CVector
namespace NBase
{
class AFX_EXT_CLASS CCrossPoint
{
public:
CCrossPoint();
virtual ~CCrossPoint();
void operator =(const CCrossPoint &t);
void *curve;
double x[2];
};
};
using namespace NBase;
#endif // !defined(AFX_CROSSPOINT_H__6610109F_05BA_40E7_87E4_AE03DBDA3D62__INCLUDED_)