www.pudn.com > 1012.zip > RectangleNode.h


// RectangleNode.h: interface for the CRectangleNode class. 
// 
////////////////////////////////////////////////////////////////////// 
 
#if !defined(AFX_RECTANGLENODE_H__21E04581_1CC5_11D7_924F_00E044397728__INCLUDED_) 
#define AFX_RECTANGLENODE_H__21E04581_1CC5_11D7_924F_00E044397728__INCLUDED_ 
 
#if _MSC_VER > 1000 
#pragma once 
#endif // _MSC_VER > 1000 
 
#include "BaseNode.h" 
#include "Point3d.h"	// Added by ClassView 
 
class CRectangleNode : public CBaseNode   
{ 
public: 
	CPoint3d m_ptStart; 
	CPoint3d m_ptEnd; 
	virtual void  Draw(void); 
	CRectangleNode(); 
	virtual ~CRectangleNode(); 
 
}; 
 
#endif // !defined(AFX_RECTANGLENODE_H__21E04581_1CC5_11D7_924F_00E044397728__INCLUDED_)