Logging improvements to allow prettier displays in the server GUI.
[dcpomatic.git] / src / lib / cinema.h
1 /*
2     Copyright (C) 2013-2014 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 /** @file  src/lib/cinema.h
21  *  @brief Cinema class.
22  */
23
24 #include <libcxml/cxml.h>
25 #include <boost/enable_shared_from_this.hpp>
26
27 namespace xmlpp {
28         class Element;
29 }
30
31 class Screen;
32
33 /** @class Cinema
34  *  @brief A description of a Cinema for KDM generation.
35  *
36  *  This is a cinema name, contact email address and a list of
37  *  Screen objects.
38  */
39 class Cinema : public boost::enable_shared_from_this<Cinema>
40 {
41 public:
42         Cinema (std::string const & n, std::string const & e)
43                 : name (n)
44                 , email (e)
45         {}
46
47         Cinema (cxml::ConstNodePtr);
48
49         void read_screens (cxml::ConstNodePtr);
50
51         void as_xml (xmlpp::Element *) const;
52
53         void add_screen (boost::shared_ptr<Screen>);
54         void remove_screen (boost::shared_ptr<Screen>);
55
56         std::string name;
57         std::string email;
58         std::list<boost::shared_ptr<Screen> > screens () const {
59                 return _screens;
60         }
61
62 private:
63         std::list<boost::shared_ptr<Screen> > _screens;
64 };