You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
356 B
C++
23 lines
356 B
C++
#ifndef ROUTEBINDINGDIALOG_H
|
|
#define ROUTEBINDINGDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class RouteBindingDialog;
|
|
}
|
|
|
|
class RouteBindingDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit RouteBindingDialog(QWidget *parent = nullptr);
|
|
~RouteBindingDialog();
|
|
|
|
private:
|
|
Ui::RouteBindingDialog *ui;
|
|
};
|
|
|
|
#endif // ROUTEBINDINGDIALOG_H
|