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

19 lines
348 B
C
Raw Normal View History

2022-09-23 13:13:41 +08:00
#ifndef OPENFILEACTION_H
#define OPENFILEACTION_H
#include <QAction>
class OpenFileAction : public QAction
{
Q_OBJECT
public:
OpenFileAction(const QString& aName, QWidget* aParent = nullptr);
~OpenFileAction() override;
signals:
void dataLoaded(bool loadSuccess);
private:
void executeAction();
};
#endif // OPENFILEACTION_H