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