X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fscreen.h;h=40990b684e04a4f6eac4e86c717e749032977e4d;hb=350afcbc40fffd8c8780180e153a2ee91088f562;hp=eff2e5ffe71c96b4ca390cf634673f83347a786c;hpb=1e77753ef4119b6d7df7d2255b1a1d8d6af951de;p=dcpomatic.git diff --git a/src/lib/screen.h b/src/lib/screen.h index eff2e5ffe..40990b684 100644 --- a/src/lib/screen.h +++ b/src/lib/screen.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2013-2018 Carl Hetherington + Copyright (C) 2013-2019 Carl Hetherington This file is part of DCP-o-matic. @@ -46,6 +46,8 @@ private: boost::optional _thumbprint; }; +namespace dcpomatic { + /** @class Screen * @brief A representation of a Screen for KDM generation. * @@ -56,8 +58,9 @@ private: class Screen { public: - Screen (std::string const & n, boost::optional rec, std::vector td) - : name (n) + Screen (std::string const & na, std::string const & no, boost::optional rec, std::vector td) + : name (na) + , notes (no) , recipient (rec) , trusted_devices (td) {} @@ -74,4 +77,6 @@ public: std::vector trusted_devices; }; +} + #endif