std::shared_ptr
[dcpomatic.git] / src / lib / dcp_subtitle.h
index 66e7a3f25efc7ee85bf40d710f5f11e86efda9f0..9cd0685aadbddd01b834d2e10550feb69b6d41ab 100644 (file)
@@ -21,7 +21,6 @@
 #ifndef DCPOMATIC_DCP_SUBTITLE_H
 #define DCPOMATIC_DCP_SUBTITLE_H
 
-#include <boost/shared_ptr.hpp>
 #include <boost/filesystem.hpp>
 
 namespace dcp {
@@ -31,7 +30,7 @@ namespace dcp {
 class DCPSubtitle
 {
 protected:
-       boost::shared_ptr<dcp::SubtitleAsset> load (boost::filesystem::path) const;
+       std::shared_ptr<dcp::SubtitleAsset> load (boost::filesystem::path) const;
 };
 
 #endif