Emit no audio from DCPs if none is mapped
[dcpomatic.git] / src / wx / verify_dcp_progress_dialog.h
index 5545b3a0993aaf1b5d446da83dec5e35191e1ba0..190c302ea45fb25ebf24d8fc06fc18da37ea0043 100644 (file)
 */
 
 
-DCPOMATIC_DISABLE_WARNINGS
+#include <dcp/warnings.h>
+LIBDCP_DISABLE_WARNINGS
 #include <wx/wx.h>
-DCPOMATIC_ENABLE_WARNINGS
-#include <boost/shared_ptr.hpp>
-
+LIBDCP_ENABLE_WARNINGS
+#include <memory>
 
 class Job;
 
-
 class wxGauge;
 class wxStaticText;
 
@@ -37,7 +36,7 @@ class VerifyDCPProgressDialog : public wxDialog
 public:
        VerifyDCPProgressDialog (wxWindow* parent, wxString title);
 
-       bool run (boost::shared_ptr<Job> job);
+       bool run (std::shared_ptr<Job> job);
 
 private:
        void cancel ();