summaryrefslogtreecommitdiff
path: root/src/lib/cinema.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-08-18 18:04:49 +0100
committerCarl Hetherington <cth@carlh.net>2015-08-18 18:04:49 +0100
commitc2a97b6f83a32483817d02194a1e7c8d6828b0bb (patch)
tree538dc2cf638cd6dd184a4904a950e69082a55e5b /src/lib/cinema.h
parent99856300c7080f7602507ae6f64b870200710736 (diff)
Include tidying.
Diffstat (limited to 'src/lib/cinema.h')
-rw-r--r--src/lib/cinema.h27
1 files changed, 2 insertions, 25 deletions
diff --git a/src/lib/cinema.h b/src/lib/cinema.h
index 4639261c3..8d4473fb1 100644
--- a/src/lib/cinema.h
+++ b/src/lib/cinema.h
@@ -18,37 +18,14 @@
*/
/** @file src/lib/cinema.h
- * @brief Screen and Cinema classes.
+ * @brief Cinema class.
*/
#include <libcxml/cxml.h>
#include <dcp/certificate.h>
#include <boost/enable_shared_from_this.hpp>
-class Cinema;
-
-/** @class Screen
- * @brief A representation of a Screen for KDM generation.
- *
- * This is the name of the screen and the certificate of its
- * server.
- */
-class Screen
-{
-public:
- Screen (std::string const & n, boost::optional<dcp::Certificate> cert)
- : name (n)
- , certificate (cert)
- {}
-
- Screen (cxml::ConstNodePtr);
-
- void as_xml (xmlpp::Element *) const;
-
- boost::shared_ptr<Cinema> cinema;
- std::string name;
- boost::optional<dcp::Certificate> certificate;
-};
+class Screen;
/** @class Cinema
* @brief A description of a Cinema for KDM generation.