X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Flib%2Fcinema.h;h=6c202a7bfc0e03515925d67162b90ee5c295995f;hp=a89408f3f28f94610f9f6470beacb5f83856e87c;hb=9f125fddff88bf62d36381f9d3f09e5240b033d5;hpb=2383b09a62ca5e9100b45bf4a2b766b4b8efba51 diff --git a/src/lib/cinema.h b/src/lib/cinema.h index a89408f3f..6c202a7bf 100644 --- a/src/lib/cinema.h +++ b/src/lib/cinema.h @@ -44,7 +44,7 @@ namespace dcpomatic { 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) + Cinema(std::string const & name_, std::vector const & e, std::string notes_, int utc_offset_hour, int utc_offset_minute) : name (name_) , emails (e) , notes (notes_) @@ -65,7 +65,7 @@ public: void set_utc_offset_minute (int m); std::string name; - std::list emails; + std::vector emails; std::string notes; int utc_offset_hour () const { @@ -76,12 +76,12 @@ public: return _utc_offset_minute; } - std::list > screens () const { + std::vector> screens() const { return _screens; } private: - std::list> _screens; + std::vector> _screens; /** Offset such that the equivalent time in UTC can be determined by subtracting the offset from the local time. */