Files
DCMV/DIDKit/App/MenuAction/ClearPropertyAction.h

22 lines
414 B
C
Raw Normal View History

2022-09-23 13:13:41 +08:00
#ifndef CLEARPROPERTYACTION_H
#define CLEARPROPERTYACTION_H
#include <QAction>
class PropertyTableModel;
class ClearPropertyAction : public QAction
{
public:
ClearPropertyAction(const QString& aName,PropertyTableModel* aModel, QWidget* aParent = nullptr);
~ClearPropertyAction() override;
private:
void executeAction();
private:
PropertyTableModel* mModel;
};
#endif // CLEARPROPERTYACTION_H