Added address resolution, and moved everything up one directory.
[ptas] / zouba / uicontroller.h
1 #ifndef UICONTROLLER_H
2 #define UICONTROLLER_H
3
4 #include "ui_zouba.h"
5 #include "routedata.h"
6
7 #include <QObject>
8
9 class UiController : public QObject
10 {
11   Q_OBJECT
12
13 public:
14   UiController( Ui::MainWindow *ui );
15   ~UiController();
16
17 public Q_SLOTS:
18   void displayRoute( const RouteData &routeData );
19
20 private:
21   Ui::MainWindow *ui;
22 };
23 #endif // UICONTROLLER_H
24