tmdb-image: Added print method
[maevies] / src / maevies_movieschedule.h
1 /*
2  * maevies_movieschedule.h
3  *
4  * This file is part of maevies
5  * Copyright (C) 2009 Gervasio Varela <gervarela@gmail.com>
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License as
9  * published by the Free Software Foundation; either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License for more details.
16  *
17  */
18
19 #ifndef MOVIESCHEDULE_H_
20 #define MOVIESCHEDULE_H_
21
22 #include <glib.h>
23 #include "maevies_theater.h"
24
25 G_BEGIN_DECLS
26
27 struct _MaeviesMovieSchedule {
28         MaeviesTheater* theater;
29         GSList* timeList;
30 };
31 typedef struct _MaeviesMovieSchedule MaeviesMovieSchedule;
32
33 MaeviesMovieSchedule* maevies_movieschedule_new(MaeviesTheater* theater);
34
35 MaeviesMovieSchedule* maevies_movieschedule_new_with_list(
36                 MaeviesTheater* theater, GSList* itemList);
37
38 G_END_DECLS
39
40 #endif /* MOVIESCHEDULE_H_ */