]> git.vomp.tv Git - vompclient.git/blob - movieinfo.h
Display channel name, duration, resume point and size on recording info screen
[vompclient.git] / movieinfo.h
1 /*
2     Copyright 2014 Marten Richter
3
4     This file is part of VOMP.
5
6     VOMP is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     VOMP is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with VOMP; if not, write to the Free Software
18     Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
19 */
20
21 #ifndef MOVIEINFO_H
22 #define MOVIEINFO_H
23
24 #include "tvmedia.h"
25
26 class MovieInfo {
27 public:
28         MovieInfo();
29
30         int id;
31
32         std::string title;
33         std::string originalTitle;
34         std::string tagline;
35         std::string overview;
36         UCHAR adult;
37         std::string collectionName;
38
39         int budget;
40         int revenue;
41         std::string genres;
42         std::string homepage;
43         std::string releaseDate;
44         int runtime;
45         float popularity;
46         float voteAverage;
47
48         TVMedia poster;
49         TVMedia fanart;
50         TVMedia collectionPoster;
51         TVMedia collectionFanart;
52         Actors actors;
53 };
54
55
56 #endif