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.
21 lines
399 B
C++
21 lines
399 B
C++
#pragma once
|
|
#include "ActionMoveItem.h"
|
|
|
|
namespace NAction
|
|
{
|
|
class CActionMoveItemSelected : public CActionMoveItem
|
|
{
|
|
public:
|
|
CActionMoveItemSelected();
|
|
CActionMoveItemSelected(CSigmaDoc * ppDoc, UINT actionType, const CPositionList& list, REAL* pmatrix);
|
|
|
|
std::string GetActionName() const override
|
|
{
|
|
return typeid(*this).name();
|
|
}
|
|
|
|
virtual void Undo(void);
|
|
virtual void Redo(void);
|
|
};
|
|
}
|