Bump version to 0.9.0
[quandoparte] / application / stationscheduleitem.h
1 /*
2
3 Copyright (C) 2011 Luciano Montanaro <mikelima@cirulla.net>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; see the file COPYING.  If not, write to
17 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 Boston, MA 02110-1301, USA.
19
20 */
21
22 #ifndef STATIONSCHEDULEITEM_H
23 #define STATIONSCHEDULEITEM_H
24
25 #include <QSharedDataPointer>
26
27 class StationScheduleItemData;
28
29 class StationScheduleItem
30 {
31 public:
32     StationScheduleItem();
33     StationScheduleItem(const StationScheduleItem &);
34     StationScheduleItem &operator=(const StationScheduleItem &);
35     ~StationScheduleItem();
36
37     QString &train();
38     void setTrain(const QString &value);
39
40     QString &departureStation();
41     void setDepartureStation(const QString &value);
42
43     QString &departureTime();
44     void setDepartureTime(const QString &value);
45
46     QString &arrivalStation();
47     void setArrivalStation(const QString &value);
48
49     QString &arrivalTime();
50     void setArrivalTime(const QString &value);
51
52     QString &detailsUrl();
53     void setDetailsUrl(const QString &value);
54
55     QString &delay();
56     void setDelay(const QString &value);
57
58     int delayClass();
59     void setDelayClass(int value);
60
61     QString &expectedPlatform();
62     void setExpectedPlatform(const QString &value);
63
64     QString &actualPlatform();
65     void setActualPlatform(const QString &value);
66
67     bool isValid();
68 private:
69     QSharedDataPointer<StationScheduleItemData> d;
70 };
71
72 #endif // STATIONSCHEDULEITEM_H