X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Flib%2Fcinema.h;h=86245953b85b830d4031b3c5bbec0025a598ef2e;hp=6a3d89845dbc11b747a694338ab34e5f6688b6a5;hb=56caa542a558a3e261a3da4773c9ed3e66e262ab;hpb=a69d242f3f00207d6ea7320e6723775f4b0dbfb3 diff --git a/src/lib/cinema.h b/src/lib/cinema.h index 6a3d89845..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. @@ -54,8 +56,8 @@ public: 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. */