diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-08-26 11:19:34 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-08-26 11:19:34 +0100 |
| commit | cb2546eaf5e2f109ca5309f3dc04e6c17b8037e5 (patch) | |
| tree | 3f1e2e897a6090dae55101c42e22405f87e4f29f /src/wx/confirm_kdm_email_dialog.h | |
| parent | 4f8442947b0c35fd50cb58e99036ba4d45e1d12e (diff) | |
Confirm sending of KDM emails.
Diffstat (limited to 'src/wx/confirm_kdm_email_dialog.h')
| -rw-r--r-- | src/wx/confirm_kdm_email_dialog.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/wx/confirm_kdm_email_dialog.h b/src/wx/confirm_kdm_email_dialog.h new file mode 100644 index 000000000..84182ad93 --- /dev/null +++ b/src/wx/confirm_kdm_email_dialog.h @@ -0,0 +1,31 @@ +/* + Copyright (C) 2016 Carl Hetherington <cth@carlh.net> + + This file is part of DCP-o-matic. + + DCP-o-matic is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + DCP-o-matic is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with DCP-o-matic. If not, see <http://www.gnu.org/licenses/>. + +*/ + +#include <wx/wx.h> +#include <list> + +class ConfirmKDMEmailDialog : public wxDialog +{ +public: + ConfirmKDMEmailDialog (wxWindow* parent, std::list<std::string> addresses); + +private: + void shut_up (wxCommandEvent& ev); +}; |
