Rename certificate -> recipient in Screen.
[dcpomatic.git] / src / lib / screen.h
index 6bac3ec14f12186b567324e34665c8283f4cee29..6e3b8b01dc32b0342100b80de96e900e355587cb 100644 (file)
@@ -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
  *  @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:
  */
 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)
                : name (n)
-               , certificate (cert)
+               , recipient (rec)
        {}
 
        Screen (cxml::ConstNodePtr);
        {}
 
        Screen (cxml::ConstNodePtr);
@@ -44,5 +44,5 @@ public:
 
        boost::shared_ptr<Cinema> cinema;
        std::string name;
 
        boost::shared_ptr<Cinema> cinema;
        std::string name;
-       boost::optional<dcp::Certificate> certificate;
+       boost::optional<dcp::Certificate> recipient;
 };
 };