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

17 lines
264 B
C
Raw Permalink Normal View History

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