diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-10-06 10:37:19 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-10-06 10:37:19 +0100 |
| commit | 0ac8235fa4addb021c0e05a9c6c19a7d22097458 (patch) | |
| tree | b270e0817120ea506d2d0864c5db32cf8441934c /src/lib/dcp.h | |
| parent | f71b2b1d19d4ed27c225b03dcea32271d9a00d6f (diff) | |
Add menu option to select CPL.
Diffstat (limited to 'src/lib/dcp.h')
| -rw-r--r-- | src/lib/dcp.h | 4 |
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; }; |
