summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/spl_entry.h12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/lib/spl_entry.h b/src/lib/spl_entry.h
index b7fdaa2e0..033cab6a0 100644
--- a/src/lib/spl_entry.h
+++ b/src/lib/spl_entry.h
@@ -18,14 +18,20 @@
*/
+namespace dcp {
+ class CPL;
+}
+
class SPLEntry
{
public:
- SPLEntry (boost::filesystem::path p)
- : dcp (p)
+ SPLEntry (boost::shared_ptr<dcp::CPL> cpl_, boost::filesystem::path directory_)
+ : cpl (cpl_)
+ , directory (directory_)
{}
/* Length of black before this DCP */
DCPTime black_before;
- boost::filesystem::path dcp;
+ boost::shared_ptr<dcp::CPL> cpl;
+ boost::filesystem::path directory;
};