Add a load of explicit keywords.
[dcpomatic.git] / src / lib / dcp.h
index d83f95f3735730c17da86e92c010e9bda7068996..575bcc8034b993d8a36cd3b7466afe5015a31997 100644 (file)
@@ -29,12 +29,14 @@ class DCPContent;
 
 class DCP
 {
+public:
+       std::list<boost::shared_ptr<dcp::CPL> > cpls () const;
+
 protected:
-       DCP (boost::shared_ptr<const DCPContent> content)
+       explicit DCP (boost::shared_ptr<const DCPContent> content)
                : _dcp_content (content)
        {}
 
-       std::list<boost::shared_ptr<dcp::CPL> > cpls () const;
        boost::shared_ptr<const DCPContent> _dcp_content;
 };