Map Matching
controller.h
Go to the documentation of this file.
1 #ifndef CONTROLLER_H
2 #define CONTROLLER_H
3 
4 #include "../solver.h"
5 #include "qmapwidget.h"
6 #include "qprocessviewer.h"
7 #include <QObject>
8 
9 class Controller : public QObject {
10  Q_OBJECT
11 public:
12  explicit Controller();
13 
14  void addSolver(Solver* solver);
15  void connectSignals();
16 
20 
21 signals:
22 
23 public slots:
24 };
25 
26 #endif // CONTROLLER_H
QProcessViewer * m_qProcessViewer
Definition: controller.h:18
Definition: solver.h:16
Solver * m_solver
Definition: controller.h:17
QMapWidget * m_qMapWidget
Definition: controller.h:19
void addSolver(Solver *solver)
Definition: controller.cpp:11
void connectSignals()
Definition: controller.cpp:16