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.
TwoLaserHead-PushJig/LaiPuLaser/MouseToolSetMarkPt.cpp

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);
}