C++11 tidying.
[dcpomatic.git] / src / wx / verify_dcp_progress_dialog.h
index 7dd0c7495e56c41c433deb1b9a513f2c28c1498b..190c302ea45fb25ebf24d8fc06fc18da37ea0043 100644 (file)
 
 */
 
-#include "lib/warnings.h"
-DCPOMATIC_DISABLE_WARNINGS
-#include <wx/wx.h>
-DCPOMATIC_ENABLE_WARNINGS
-#include <boost/shared_ptr.hpp>
 
+#include <dcp/warnings.h>
+LIBDCP_DISABLE_WARNINGS
+#include <wx/wx.h>
+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 ();