std::shared_ptr
[dcpomatic.git] / src / lib / content_audio.h
index 509e7e4a6c92f326536637238db75bebb2081f14..0d16799d715a8fd67fe2e770b304f969654a328b 100644 (file)
@@ -39,12 +39,12 @@ public:
                , frame (0)
        {}
 
-       ContentAudio (boost::shared_ptr<const AudioBuffers> a, Frame f)
+       ContentAudio (std::shared_ptr<const AudioBuffers> a, Frame f)
                : audio (a)
                , frame (f)
        {}
 
-       boost::shared_ptr<const AudioBuffers> audio;
+       std::shared_ptr<const AudioBuffers> audio;
        Frame frame;
 };