summaryrefslogtreecommitdiff
path: root/src/lib/cinema.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/cinema.h')
-rw-r--r--src/lib/cinema.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/lib/cinema.h b/src/lib/cinema.h
new file mode 100644
index 000000000..232fc5ec8
--- /dev/null
+++ b/src/lib/cinema.h
@@ -0,0 +1,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;
+};