Merge remote-tracking branch 'origin/master' into 2.0
[dcpomatic.git] / src / lib / config.h
index f26e2532a1006cbe9a2e5be5f64aadeec5b90712..66ff662142133b6e4258b49c745b93759430252f 100644 (file)
@@ -168,6 +168,10 @@ public:
                return _mail_password;
        }
 
+       std::string kdm_subject () const {
+               return _kdm_subject;
+       }
+
        std::string kdm_from () const {
                return _kdm_from;
        }
@@ -322,6 +326,11 @@ public:
                changed ();
        }
 
+       void set_kdm_subject (std::string s) {
+               _kdm_subject = s;
+               changed ();
+       }
+
        void set_kdm_from (std::string f) {
                _kdm_from = f;
                changed ();
@@ -412,6 +421,7 @@ private:
        std::string _mail_server;
        std::string _mail_user;
        std::string _mail_password;
+       std::string _kdm_subject;
        std::string _kdm_from;
        std::string _kdm_cc;
        std::string _kdm_email;