X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fcinema.h;h=86245953b85b830d4031b3c5bbec0025a598ef2e;hb=143cfcf6c9e8c0a0879652d0d741ec268e8d9541;hp=3cb17502bed46eed17d1b118ef68b81328962540;hpb=3828baf56467224f5d44049bf1e7a7ed11f43a05;p=dcpomatic.git diff --git a/src/lib/cinema.h b/src/lib/cinema.h index 3cb17502b..86245953b 100644 --- a/src/lib/cinema.h +++ b/src/lib/cinema.h @@ -29,7 +29,9 @@ namespace xmlpp { class Element; } -class Screen; +namespace dcpomatic { + class Screen; +} /** @class Cinema * @brief A description of a Cinema for KDM generation. @@ -48,14 +50,14 @@ public: , _utc_offset_minute (utc_offset_minute) {} - Cinema (cxml::ConstNodePtr); + explicit Cinema (cxml::ConstNodePtr); void read_screens (cxml::ConstNodePtr); void as_xml (xmlpp::Element *) const; - void add_screen (boost::shared_ptr); - void remove_screen (boost::shared_ptr); + void add_screen (boost::shared_ptr); + void remove_screen (boost::shared_ptr); void set_utc_offset_hour (int h); void set_utc_offset_minute (int m); @@ -72,12 +74,12 @@ public: return _utc_offset_minute; } - std::list > screens () const { + std::list > screens () const { return _screens; } private: - std::list > _screens; + std::list > _screens; /** Offset such that the equivalent time in UTC can be determined by subtracting the offset from the local time. */