std::shared_ptr
[dcpomatic.git] / src / wx / markers_dialog.cc
index 46e8e6d091e297bec3e572a5cf3b9010ddc35859..31789af2cca675bf190f746cce83afe7f33dba33 100644 (file)
 #include "lib/film.h"
 #include <dcp/types.h>
 #include <wx/gbsizer.h>
-#include <boost/bind.hpp>
+#include <boost/bind/bind.hpp>
 #include <iostream>
 
 using std::cout;
 using boost::bind;
-using boost::shared_ptr;
-using boost::weak_ptr;
+using std::shared_ptr;
+using std::weak_ptr;
 using boost::optional;
+using dcpomatic::DCPTime;
 
 class Marker
 {
@@ -100,7 +101,7 @@ private:
        weak_ptr<FilmViewer> viewer;
        dcp::Marker type;
        CheckBox* checkbox;
-       Timecode<DCPTime>* timecode;
+       Timecode<dcpomatic::DCPTime>* timecode;
        Button* set_button;
 };