Created new ui for the program. Almost everything that worked previously
[ptas] / zouba / src / logic / routepoint.h
1 #ifndef ROUTEPOINT_H
2 #define ROUTEPOINT_H
3
4 #include <QDateTime>
5
6 enum POINT_TYPE {
7     MAP_LOCATION,
8     POINT,
9     STOP
10 };
11
12 class RoutePoint
13 {
14 public:
15     RoutePoint();
16     RoutePoint(POINT_TYPE type, QDateTime arrival, QDateTime departure, QString x, QString y, QString name);
17     //~RoutePoint();
18     //RoutePoint(const RoutePoint&);
19     //RoutePoint& operator=(const RoutePoint&);
20
21     POINT_TYPE type;
22     QDateTime arrival_time, departure_time;
23     QString name, x, y;
24 };
25
26 #endif // ROUTEPOINT_H