Add Qt module note to INSTALL
[nomnom.git] / src / Media.h
blob3b23a22368ab3555681418f14f27f1d0006f019c
1 /*
2 * NomNom
3 * Copyright (C) 2010-2011 Toni Gundogdu <legatvs@gmail.com>
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 3 of the License, or
8 * (at your option) any later version.
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
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 #ifndef nomnom_media_h
20 #define nomnom_media_h
22 #include <QVariantMap>
24 class Media
26 public:
27 typedef enum
29 LengthBytes = 0x00,
30 FileSuffix,
31 PageTitle,
32 StreamURL,
33 PageURL,
34 MediaID,
35 Host
36 } Detail;
37 public:
38 Media& operator=(const Media&);
39 Media(const Media&);
40 Media();
41 public:
42 bool fromJSON(const QString&, QString&);
43 QVariant get(Detail) const;
44 private:
45 QVariantMap _results;
48 class MediaException
50 public:
51 MediaException(const QString&);
52 const QString& what() const;
53 private:
54 QString errmsg;
57 #endif
59 // vim: set ts=2 sw=2 tw=72 expandtab: