X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fdcp.h;h=d72ce683333350215184206602cdaa8b3f667f57;hb=dd9be86db6cde0afa5da0d1d1ac43b42e05dca26;hp=d449fdb39d8444e6cf0fc8d1e2b91bf1043d6ade;hpb=83416808c0b1ca732e7a186d3811f1ec796fea08;p=dcpomatic.git diff --git a/src/lib/dcp.h b/src/lib/dcp.h index d449fdb39..d72ce6833 100644 --- a/src/lib/dcp.h +++ b/src/lib/dcp.h @@ -22,7 +22,6 @@ #define DCPOMATIC_DCP_H #include -#include #include #include @@ -31,15 +30,15 @@ class DCPContent; class DCP { public: - std::list > cpls () const; + std::list > cpls () const; protected: - explicit DCP (boost::shared_ptr content, bool tolerant) + explicit DCP (std::shared_ptr content, bool tolerant) : _dcp_content (content) , _tolerant (tolerant) {} - boost::shared_ptr _dcp_content; + std::shared_ptr _dcp_content; private: bool _tolerant;