17 lines
264 B
C
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
|