summaryrefslogtreecommitdiff
path: root/src/lib/screen.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-11-15 01:17:12 +0000
committerCarl Hetherington <cth@carlh.net>2015-11-15 01:17:12 +0000
commitffa5a512112809e2256cae7a01afcd14c99c83a6 (patch)
tree2815e3299283e5b1e7723018962f07fa4f9fa4d5 /src/lib/screen.h
parent94b63f777e0a1625e557f7fd6f19aaf920b18332 (diff)
Rename certificate -> recipient in Screen.
Diffstat (limited to 'src/lib/screen.h')
-rw-r--r--src/lib/screen.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/screen.h b/src/lib/screen.h
index 6bac3ec14..6e3b8b01d 100644
--- a/src/lib/screen.h
+++ b/src/lib/screen.h
@@ -28,14 +28,14 @@ class Cinema;
* @brief A representation of a Screen for KDM generation.
*
* This is the name of the screen and the certificate of its
- * server.
+ * `recipient' (i.e. the servers).
*/
class Screen
{
public:
- Screen (std::string const & n, boost::optional<dcp::Certificate> cert)
+ Screen (std::string const & n, boost::optional<dcp::Certificate> rec)
: name (n)
- , certificate (cert)
+ , recipient (rec)
{}
Screen (cxml::ConstNodePtr);
@@ -44,5 +44,5 @@ public:
boost::shared_ptr<Cinema> cinema;
std::string name;
- boost::optional<dcp::Certificate> certificate;
+ boost::optional<dcp::Certificate> recipient;
};