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.
20 lines
433 B
C++
20 lines
433 B
C++
//////////////////////////////////////////////////////////////////////////////
|
|
//ÎÄźţ: CItemŔŕŔŠŐš
|
|
#include "StdAfx.h"
|
|
#include "ItemSelectPoint.h"
|
|
#include "SigmaDoc.h"
|
|
#include "SigmaView.h"
|
|
|
|
CItemSelectPoint::CItemSelectPoint(CSigmaDoc* ppDoc)
|
|
: CItemSelectElement(ppDoc)
|
|
{
|
|
m_SelectType=DOUBLEFOX_POINT;
|
|
m_SelectID=IDS_STRING_IS_NOT_POINT;
|
|
m_nCompareIdea=1;
|
|
}
|
|
|
|
CItemSelectPoint::~CItemSelectPoint(void)
|
|
{
|
|
RemoveAllSelect();
|
|
}
|