29 lines
382 B
C
29 lines
382 B
C
|
#ifndef GAG_H
|
||
|
#define GAG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
#include "widget.h"
|
||
|
|
||
|
namespace Ui {
|
||
|
class GAG;
|
||
|
}
|
||
|
|
||
|
class GAG : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit GAG(QWidget *parent = 0);
|
||
|
~GAG();
|
||
|
|
||
|
private slots:
|
||
|
void on_pushButton_2_clicked();
|
||
|
void closeEvent(QCloseEvent *event);
|
||
|
void on_pushButton_clicked();
|
||
|
|
||
|
private:
|
||
|
Ui::GAG *ui;
|
||
|
};
|
||
|
|
||
|
#endif // GAG_H
|