#ifndef CLEARPROPERTYACTION_H #define CLEARPROPERTYACTION_H #include 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