31 lines
443 B
C
31 lines
443 B
C
|
#ifndef GKTOGK_H
|
||
|
#define GKTOGK_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
#include "widget.h"
|
||
|
#include "geo.h"
|
||
|
|
||
|
namespace Ui {
|
||
|
class GKtoGK;
|
||
|
}
|
||
|
|
||
|
class GKtoGK : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit GKtoGK(QWidget *parent = 0);
|
||
|
~GKtoGK();
|
||
|
|
||
|
private slots:
|
||
|
void on_pushButton_2_clicked();
|
||
|
void closeEvent(QCloseEvent *event);
|
||
|
void on_pushButton_clicked();
|
||
|
|
||
|
private:
|
||
|
Ui::GKtoGK *ui;
|
||
|
double B, L, l;
|
||
|
};
|
||
|
|
||
|
#endif // GKTOGK_H
|