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