X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Flib%2Fcinema.h;h=daa4aa8bf3f6a520fda7064206ff6a71e8d15908;hp=86245953b85b830d4031b3c5bbec0025a598ef2e;hb=dd9be86db6cde0afa5da0d1d1ac43b42e05dca26;hpb=0d35820cf50d2789752b8776683b26d04642518d diff --git a/src/lib/cinema.h b/src/lib/cinema.h index 86245953b..daa4aa8bf 100644 --- a/src/lib/cinema.h +++ b/src/lib/cinema.h @@ -22,8 +22,10 @@ * @brief Cinema class. */ + #include -#include +#include + namespace xmlpp { class Element; @@ -39,7 +41,7 @@ namespace dcpomatic { * 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) @@ -56,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); @@ -74,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. */