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