Files
DCMV/DIDKit/App/MenuAction/ClearPropertyAction.h
2022-09-23 13:13:41 +08:00

22 lines
414 B
C++

#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