std::shared_ptr
[dcpomatic.git] / src / wx / report_problem_dialog.h
index 651087907d24d038432efa9f9679d6935e342367..b12bece618508505962ef001458bfea7533a6672 100644 (file)
 
 */
 
+
 #include "lib/warnings.h"
 DCPOMATIC_DISABLE_WARNINGS
 #include <wx/dialog.h>
 DCPOMATIC_ENABLE_WARNINGS
-#include <boost/shared_ptr.hpp>
+#include <memory>
+
 
 class wxTextCtrl;
 class wxFlexGridSizer;
@@ -32,12 +34,12 @@ class Film;
 class ReportProblemDialog : public wxDialog
 {
 public:
-       ReportProblemDialog (wxWindow* parent, boost::shared_ptr<Film> film = boost::shared_ptr<Film>());
+       ReportProblemDialog (wxWindow* parent, std::shared_ptr<Film> film = std::shared_ptr<Film>());
 
        void report ();
 
 private:
-       boost::shared_ptr<Film> _film;
+       std::shared_ptr<Film> _film;
 
        wxSizer* _overall_sizer;
        wxFlexGridSizer* _table;