kradio4  r778
stationlistmetadata.h
Go to the documentation of this file.
1 /***************************************************************************
2  stationlistmetadata.h - description
3  -------------------
4  begin : Sat March 29 2003
5  copyright : (C) 2003 by Klas Kalass
6  email : klas@kde.org
7  copyright : (C) 2002 by Martin Witte / Frank Schwanz
8  email : emw-kradio@nocabal.de / schwanz@fh-brandenburg.de
9  ***************************************************************************/
10 
11 /***************************************************************************
12  * *
13  * This program is free software; you can redistribute it and/or modify *
14  * it under the terms of the GNU General Public License as published by *
15  * the Free Software Foundation; either version 2 of the License, or *
16  * (at your option) any later version. *
17  * *
18  ***************************************************************************/
19 
20 #ifndef STATIONLISTMETADATA_H
21 #define STATIONLISTMETADATA_H
22 
23 #ifdef HAVE_CONFIG_H
24 #include <config.h>
25 #endif
26 
27 #include <QtCore/QString>
28 #include <QtCore/QDateTime>
29 
35 class KDE_EXPORT StationListMetaData {
36 public:
37  QString maintainer;
38  QDateTime lastChange;
39  QString country;
40  QString city;
41  QString media;
42  QString comment;
43 
44  bool operator != (const StationListMetaData &x) const { return !operator ==(x); }
45  bool operator == (const StationListMetaData &x) const {
46  return maintainer == x.maintainer &&
47  lastChange == x.lastChange &&
48  country == x.country &&
49  city == x.city &&
50  media == x.media &&
51  comment == x.comment;
52  }
53 };
54 
55 #endif
Meta Data about a stationlist.