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.
|
#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; |