Complain on startup if signer or decryption chains are inconsistent (#1520).
[dcpomatic.git] / src / wx / recreate_chain_dialog.h
index 287e657670408a14fbc52540218ceb320652a046..10086be865a2166fe472242011c740e47db2ca3c 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2018 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2018-2019 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 */
 
 #include "question_dialog.h"
+#include "lib/config.h"
 #include <wx/wx.h>
 #include <list>
 
 class RecreateChainDialog : public QuestionDialog
 {
 public:
-       RecreateChainDialog (wxWindow* parent);
+       RecreateChainDialog (wxWindow* parent, wxString title, wxString message, wxString cancel, boost::optional<Config::Nag> nag = boost::optional<Config::Nag>());
 
 private:
        void shut_up (wxCommandEvent& ev);
+       boost::optional<Config::Nag> _nag;
 };