std::shared_ptr
[dcpomatic.git] / src / lib / shuffler.h
index 80754a5e0b2854f7058e29aa8e7cf02bf5de3252..b0a416b80f33edb9957919f6dc82d4cc1e6ef3eb 100644 (file)
@@ -31,11 +31,11 @@ class Shuffler
 public:
        void clear ();
        void flush ();
-       void video (boost::weak_ptr<Piece>, ContentVideo video);
+       void video (std::weak_ptr<Piece>, ContentVideo video);
 
-       boost::signals2::signal<void (boost::weak_ptr<Piece>, ContentVideo)> Video;
+       boost::signals2::signal<void (std::weak_ptr<Piece>, ContentVideo)> Video;
 
-       typedef std::pair<boost::weak_ptr<Piece>, ContentVideo> Store;
+       typedef std::pair<std::weak_ptr<Piece>, ContentVideo> Store;
 
 private:
        friend struct ::shuffler_test5;