X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Flib%2Fscreen.h;fp=src%2Flib%2Fscreen.h;h=6e3b8b01dc32b0342100b80de96e900e355587cb;hp=6bac3ec14f12186b567324e34665c8283f4cee29;hb=ffa5a512112809e2256cae7a01afcd14c99c83a6;hpb=94b63f777e0a1625e557f7fd6f19aaf920b18332 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 cert) + Screen (std::string const & n, boost::optional rec) : name (n) - , certificate (cert) + , recipient (rec) {} Screen (cxml::ConstNodePtr); @@ -44,5 +44,5 @@ public: boost::shared_ptr cinema; std::string name; - boost::optional certificate; + boost::optional recipient; };