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/SetPointMgr.h

17 lines
298 B
C++

#pragma once
#include "SetPointTool.h"
class CSetPointMgr
{
public:
CSetPointMgr(void);
~CSetPointMgr(void);
void OnLButtonDown(Dbxy pt);
void SetTool(CSetPointTool *tool);
void Reset();
private:
CSetPointTool *m_Tool;//当前的指定点工具
};
extern CSetPointMgr *gSetPointMgr;