blob: 0cec013845aba4e6bfce92dabf9c88ae45a72cc4 (
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
|
#include <libdcp/certificates.h>
class Screen
{
public:
Screen (std::string const & n)
: name (n)
{}
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;
};
|