Note that newer libsub version is required.
[dcpomatic.git] / src / lib / dkdm_recipient.h
index 50f2f3e15277ad6fba80d742c823aff35ff23508..7a0fa01854c271347fbc96f151367e8b453cb21b 100644 (file)
@@ -33,7 +33,7 @@ public:
                std::string const& name_,
                std::string const& notes_,
                boost::optional<dcp::Certificate> recipient_,
-               std::list<std::string> emails_,
+               std::vector<std::string> emails_,
                int utc_offset_hour_,
                int utc_offset_minute_
                )
@@ -47,9 +47,9 @@ public:
 
        explicit DKDMRecipient (cxml::ConstNodePtr);
 
-       void as_xml (xmlpp::Element *) const;
+       void as_xml (xmlpp::Element *) const override;
 
-       std::list<std::string> emails;
+       std::vector<std::string> emails;
        int utc_offset_hour;
        int utc_offset_minute;
 };