diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-01-06 02:09:08 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-01-06 02:09:08 +0000 |
| commit | d093a5268e64af44bc55aec06d4c9b8efca6d9d6 (patch) | |
| tree | 8b15d250012d2b3fc2a86890361ce3af22d73d87 /src/lib/cinema.h | |
| parent | 49936cb957f0d57310f05a7b17c7ab52c95e94d4 (diff) | |
Some work on KDM UI.
Diffstat (limited to 'src/lib/cinema.h')
| -rw-r--r-- | src/lib/cinema.h | 23 |
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; +}; |
