Merge master.
[dcpomatic.git] / src / lib / cinema.h
1 /*
2     Copyright (C) 2013 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 #include <boost/enable_shared_from_this.hpp>
21 #include <dcp/certificates.h>
22
23 class Cinema;
24
25 namespace cxml {
26         class Node;
27 }
28
29 class Screen
30 {
31 public:
32         Screen (std::string const & n, boost::shared_ptr<dcp::Certificate> cert)
33                 : name (n)
34                 , certificate (cert)
35         {}
36
37         Screen (boost::shared_ptr<const cxml::Node>);
38
39         void as_xml (xmlpp::Element *) const;
40         
41         boost::shared_ptr<Cinema> cinema;
42         std::string name;
43         boost::shared_ptr<dcp::Certificate> certificate;
44 };
45
46 class Cinema : public boost::enable_shared_from_this<Cinema>
47 {
48 public:
49         Cinema (std::string const & n, std::string const & e)
50                 : name (n)
51                 , email (e)
52         {}
53
54         Cinema (boost::shared_ptr<const cxml::Node>);
55
56         void read_screens (boost::shared_ptr<const cxml::Node>);
57
58         void as_xml (xmlpp::Element *) const;
59
60         void add_screen (boost::shared_ptr<Screen>);
61         void remove_screen (boost::shared_ptr<Screen>);
62         
63         std::string name;
64         std::string email;
65         std::list<boost::shared_ptr<Screen> > screens () const {
66                 return _screens;
67         }
68
69 private:        
70         std::list<boost::shared_ptr<Screen> > _screens;
71 };