add file
[badge] / timetable.h
1 #ifndef TIMETABLE_H
2 #define TIMETABLE_H
3
4 #include <QDataStream>
5
6 class  TimeTable
7 {
8     unsigned int day;
9     unsigned int entrance;
10     unsigned int firstPause;
11     unsigned int endFirstPause;
12     unsigned int secondPause;
13     unsigned int endSecondPause;
14     unsigned int exit;
15     public:
16     TimeTable() {;}
17 };
18
19 QDataStream &operator<<(QDataStream &out, const TimeTable &timetable);
20 QDataStream &operator>>(QDataStream &in, TimeTable &timetable);
21
22
23
24 #endif // TIMETABLE_H