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

class Screen
{
public:
	Screen (std::string const & n)
		: name (n)
	{}
	
	std::string name;
	libdcp::Certificate certificate;
};

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