stationlistmetadata.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef STATIONLISTMETADATA_H
00021 #define STATIONLISTMETADATA_H
00022
00023 #ifdef HAVE_CONFIG_H
00024 #include <config.h>
00025 #endif
00026
00027 #include <QtCore/QString>
00028 #include <QtCore/QDateTime>
00029
00035 class KDE_EXPORT StationListMetaData {
00036 public:
00037 QString maintainer;
00038 QDateTime lastChange;
00039 QString country;
00040 QString city;
00041 QString media;
00042 QString comment;
00043
00044 bool operator != (const StationListMetaData &x) const { return !operator ==(x); }
00045 bool operator == (const StationListMetaData &x) const {
00046 return maintainer == x.maintainer &&
00047 lastChange == x.lastChange &&
00048 country == x.country &&
00049 city == x.city &&
00050 media == x.media &&
00051 comment == x.comment;
00052 }
00053 };
00054
00055 #endif