#pragma once #include "commandbase.h" class CCommandDelNode :public CCommandBase { public: CCommandDelNode(void); ~CCommandDelNode(void); virtual CString GetStr(); virtual void ExcuteExt(); virtual void UndoExt(); void SetPar(int idx,Dbxy pt); private: int m_idx; Dbxy m_pt; };