summaryrefslogtreecommitdiff
path: root/src/wx/qube_certificate_panel.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-02-07 23:54:07 +0000
committerCarl Hetherington <cth@carlh.net>2019-05-10 23:43:42 +0100
commit35a7379dda587add9d94dc4f710414a23976d6e7 (patch)
tree523fccc8981a454001e0dac7689492ce053c5075 /src/wx/qube_certificate_panel.h
parentb7e546d9685c0a3304faa48e95516915d811ec5c (diff)
Support download of certificates from Qube (#1460).
Diffstat (limited to 'src/wx/qube_certificate_panel.h')
-rw-r--r--src/wx/qube_certificate_panel.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/wx/qube_certificate_panel.h b/src/wx/qube_certificate_panel.h
new file mode 100644
index 000000000..89c67f60e
--- /dev/null
+++ b/src/wx/qube_certificate_panel.h
@@ -0,0 +1,33 @@
+/*
+ Copyright (C) 2019 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 "download_certificate_panel.h"
+
+class QubeCertificatePanel : public DownloadCertificatePanel
+{
+public:
+ QubeCertificatePanel (DownloadCertificateDialog* dialog, std::string type);
+
+ void do_download ();
+ wxString name () const;
+
+private:
+ std::string _type;
+};