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