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.

17 lines
359 B
C++

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