diff options
Diffstat (limited to 'src/wx/verify_dcp_dialog.h')
| -rw-r--r-- | src/wx/verify_dcp_dialog.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/wx/verify_dcp_dialog.h b/src/wx/verify_dcp_dialog.h index 436d15332..ffed80b91 100644 --- a/src/wx/verify_dcp_dialog.h +++ b/src/wx/verify_dcp_dialog.h @@ -23,6 +23,7 @@ LIBDCP_DISABLE_WARNINGS #include <wx/wx.h> LIBDCP_ENABLE_WARNINGS +#include <boost/filesystem.hpp> #include <memory> @@ -36,7 +37,12 @@ class VerifyDCPResultPanel; class VerifyDCPDialog : public wxDialog { public: - VerifyDCPDialog(wxWindow* parent, wxString title, std::shared_ptr<VerifyDCPJob> job); + VerifyDCPDialog( + wxWindow* parent, + wxString title, + std::vector<boost::filesystem::path> dcp_directories, + std::vector<boost::filesystem::path> kdms + ); private: void verify_clicked(); @@ -48,7 +54,8 @@ private: Button* _cancel; Button* _verify; bool _cancel_pending; - std::shared_ptr<VerifyDCPJob> _job; + std::vector<boost::filesystem::path> _dcp_directories; + std::vector<boost::filesystem::path> _kdms; }; |
