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