www.pudn.com > cluster_KM_DS.rar > points.h
// points.h: interface for the points class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_POINTS_H__1F31FB4A_8AFE_4E72_BCA7_F605125FC4AE__INCLUDED_)
#define AFX_POINTS_H__1F31FB4A_8AFE_4E72_BCA7_F605125FC4AE__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
struct point
{
int x,
y;
};
class C_point
{
public:
point w;
int *num;
int count;
~C_point() {
delete []num;
}
};
#endif // !defined(AFX_POINTS_H__1F31FB4A_8AFE_4E72_BCA7_F605125FC4AE__INCLUDED_)