X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fcinema.h;h=c17454db980f957aff708857ed4d4bcab76f85bd;hb=fe933ebb2c55b4235fcba5d02af2ba91c272fc88;hp=6a3d89845dbc11b747a694338ab34e5f6688b6a5;hpb=a69d242f3f00207d6ea7320e6723775f4b0dbfb3;p=dcpomatic.git diff --git a/src/lib/cinema.h b/src/lib/cinema.h index 6a3d89845..c17454db9 100644 --- a/src/lib/cinema.h +++ b/src/lib/cinema.h @@ -22,14 +22,18 @@ * @brief Cinema class. */ + #include -#include +#include + namespace xmlpp { class Element; } -class Screen; +namespace dcpomatic { + class Screen; +} /** @class Cinema * @brief A description of a Cinema for KDM generation. @@ -37,7 +41,7 @@ class Screen; * This is a cinema name, some metadata and a list of * Screen objects. */ -class Cinema : public boost::enable_shared_from_this +class Cinema : public std::enable_shared_from_this { public: Cinema (std::string const & name_, std::list const & e, std::string notes_, int utc_offset_hour, int utc_offset_minute) @@ -54,8 +58,8 @@ public: void as_xml (xmlpp::Element *) const; - void add_screen (boost::shared_ptr); - void remove_screen (boost::shared_ptr); + void add_screen (std::shared_ptr); + void remove_screen (std::shared_ptr); void set_utc_offset_hour (int h); void set_utc_offset_minute (int m); @@ -72,12 +76,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. */