22 lines
414 B
C++
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
|