summaryrefslogtreecommitdiff
path: root/src/lib/dcp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/dcp.h')
-rw-r--r--src/lib/dcp.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/dcp.h b/src/lib/dcp.h
index d83f95f37..e2e83e96e 100644
--- a/src/lib/dcp.h
+++ b/src/lib/dcp.h
@@ -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)
: _dcp_content (content)
{}
- std::list<boost::shared_ptr<dcp::CPL> > cpls () const;
boost::shared_ptr<const DCPContent> _dcp_content;
};