X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fscreen.h;h=0ae4835446187616a8f927387de244a6eb41ca8b;hb=6fde557864505b470c438e4161ee494f29b90d63;hp=6e3b8b01dc32b0342100b80de96e900e355587cb;hpb=ffa5a512112809e2256cae7a01afcd14c99c83a6;p=dcpomatic.git diff --git a/src/lib/screen.h b/src/lib/screen.h index 6e3b8b01d..0ae483544 100644 --- a/src/lib/screen.h +++ b/src/lib/screen.h @@ -33,9 +33,10 @@ class Cinema; class Screen { public: - Screen (std::string const & n, boost::optional rec) + Screen (std::string const & n, boost::optional rec, std::vector td) : name (n) , recipient (rec) + , trusted_devices (td) {} Screen (cxml::ConstNodePtr); @@ -45,4 +46,5 @@ public: boost::shared_ptr cinema; std::string name; boost::optional recipient; + std::vector trusted_devices; };