#ifndef OPENDIRACTION_H #define OPENDIRACTION_H #include class OpenDirAction : public QAction { Q_OBJECT public: OpenDirAction(const QString& aName, QWidget* aParent = nullptr); ~OpenDirAction() override; signals: void dataLoaded(bool loadSuccess); private: void executeAction(); }; #endif // OPENDIRACTION_H