29 lines
386 B
C++
29 lines
386 B
C++
#ifndef QG3POINTDIALOG_H
|
|
#define QG3POINTDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class qG3PointDialog;
|
|
}
|
|
|
|
class G3PointDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit G3PointDialog(QWidget *parent = nullptr);
|
|
~G3PointDialog();
|
|
void emitRun();
|
|
int getkNN();
|
|
bool isSteepestSlope();
|
|
|
|
signals:
|
|
void run();
|
|
|
|
private:
|
|
Ui::qG3PointDialog *ui;
|
|
};
|
|
|
|
#endif // QG3POINTDIALOG_H
|