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.
18 lines
401 B
C++
18 lines
401 B
C++
#include "StdAfx.h"
|
|
#include "MouseToolSetMarkPt.h"
|
|
#include "GlobalFunction.h"
|
|
#include "GlobalDrawMgr.h"
|
|
#include "SetPointMgr.h"
|
|
|
|
|
|
CMouseToolSetMarkPt::CMouseToolSetMarkPt(void)
|
|
{
|
|
}
|
|
CMouseToolSetMarkPt::~CMouseToolSetMarkPt(void)
|
|
{
|
|
}
|
|
void CMouseToolSetMarkPt::OnLButtonDown(UINT nFlags, CPoint point,CClientDC &dc)
|
|
{
|
|
Dbxy pt = gDraw->CPoint2Dbxy(point);
|
|
gSetPointMgr->OnLButtonDown(pt);
|
|
} |