Files
DCMV/DIDKit/App/MenuAction/ExitAction.h
2022-09-23 13:13:41 +08:00

17 lines
264 B
C++

#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