Added new routedialog
[speedfreak] / Client / routedialog.h
1 #ifndef ROUTEDIALOG_H
2 #define ROUTEDIALOG_H
3
4 #include <QDialog>
5
6 namespace Ui {
7     class RouteDialog;
8 }
9
10 class RouteDialog : public QDialog {
11     Q_OBJECT
12 public:
13     RouteDialog(QWidget *parent = 0);
14     ~RouteDialog();
15
16 protected:
17     void changeEvent(QEvent *e);
18
19 private:
20     Ui::RouteDialog *ui;
21 };
22
23 #endif // ROUTEDIALOG_H