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