X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fconfig.h;h=ebcf7e83dd98fa524f839c341e2e4873094c4eac;hb=d5c390849df518273da8fc365e129f3460ac027b;hp=c359901a48f2df2543311c83e1aa2bf4f0a17591;hpb=11835d1e0bf15dd16a0f5fe3844fafb924f0a927;p=dcpomatic.git diff --git a/src/lib/config.h b/src/lib/config.h index c359901a4..ebcf7e83d 100644 --- a/src/lib/config.h +++ b/src/lib/config.h @@ -173,6 +173,10 @@ public: return _kdm_from; } + std::string kdm_cc () const { + return _kdm_cc; + } + std::string kdm_email () const { return _kdm_email; } @@ -324,6 +328,11 @@ public: changed (); } + void set_kdm_cc (std::string f) { + _kdm_cc = f; + changed (); + } + void set_kdm_email (std::string e) { _kdm_email = e; changed (); @@ -406,6 +415,7 @@ private: std::string _mail_user; std::string _mail_password; std::string _kdm_from; + std::string _kdm_cc; std::string _kdm_email; /** true to check for updates on startup */ bool _check_for_updates;