summaryrefslogtreecommitdiff
path: root/src/lib/cinema.h
blob: 6f426ae8d66630eab59f1788e71535a24dfaed39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#include <libdcp/certificates.h>

class Screen
{
public:
	Screen (std::string const & n, boost::shared_ptr<libdcp::Certificate> cert)
		: name (n)
		, certificate (cert)
	{}
	
	std::string name;
	boost::shared_ptr<libdcp::Certificate> certificate;
};

class Cinema
{
public:
	Cinema (std::string const & n, std::string const & e)
		: name (n)
		, email (e)
	{}
	
	std::string name;
	std::string email;
	std::list<boost::shared_ptr<Screen> > screens;
};