summaryrefslogtreecommitdiff
path: root/src/lib/dcp.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-10-06 10:37:19 +0100
committerCarl Hetherington <cth@carlh.net>2016-10-06 10:37:19 +0100
commit0ac8235fa4addb021c0e05a9c6c19a7d22097458 (patch)
treeb270e0817120ea506d2d0864c5db32cf8441934c /src/lib/dcp.h
parentf71b2b1d19d4ed27c225b03dcea32271d9a00d6f (diff)
Add menu option to select CPL.
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;
};