43 lines
640 B
C++
43 lines
640 B
C++
#ifndef VVODSECTOTVET_H
|
|
#define VVODSECTOTVET_H
|
|
|
|
#include <QWidget>
|
|
#include <QDialog>
|
|
#include "vvodnomera.h"
|
|
#include "widget.h"
|
|
|
|
#include "groundobj.h"
|
|
|
|
namespace Ui {
|
|
class vvodSectOtvet;
|
|
}
|
|
|
|
class vvodSectOtvet : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit vvodSectOtvet(QWidget *parent = 0);
|
|
~vvodSectOtvet();
|
|
|
|
int n_Ab;
|
|
groundObj *obj;
|
|
|
|
void setAngles(QPointF pf);
|
|
|
|
private slots:
|
|
|
|
void closeEvent(QCloseEvent *event);
|
|
|
|
void on_pushButton_2_clicked();
|
|
|
|
void on_pushButton_clicked();
|
|
|
|
void on_comboBox_activated(int index);
|
|
|
|
private:
|
|
Ui::vvodSectOtvet *ui;
|
|
};
|
|
|
|
#endif // VVODSECTOTVET_H
|