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