From 2f9a80993e01ba0ed40854eadbc7723a7529bd98 Mon Sep 17 00:00:00 2001 From: Nicola De Filippo Date: Mon, 30 Nov 2009 14:37:29 +0100 Subject: [PATCH 1/1] timetable --- timetable.cpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 timetable.cpp diff --git a/timetable.cpp b/timetable.cpp new file mode 100644 index 0000000..8cdf06a --- /dev/null +++ b/timetable.cpp @@ -0,0 +1,15 @@ +#include "timetable.h" + + + +QDataStream &operator<<(QDataStream &out, const TimeTable &timetable) +{ + + return out; +} + +QDataStream &operator>>(QDataStream &in, TimeTable &timetable) +{ + + return in; +} -- 1.7.9.5