diff options
Diffstat (limited to 'src/lib/dcp.h')
| -rw-r--r-- | src/lib/dcp.h | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/src/lib/dcp.h b/src/lib/dcp.h index d72ce6833..d8e0aec27 100644 --- a/src/lib/dcp.h +++ b/src/lib/dcp.h @@ -18,19 +18,27 @@ */ + #ifndef DCPOMATIC_DCP_H #define DCPOMATIC_DCP_H -#include <dcp/cpl.h> + #include <list> -#include <iostream> +#include <memory> + + +namespace dcp { + class CPL; +} + class DCPContent; + class DCP { public: - std::list<std::shared_ptr<dcp::CPL> > cpls () const; + std::list<std::shared_ptr<dcp::CPL>> cpls () const; protected: explicit DCP (std::shared_ptr<const DCPContent> content, bool tolerant) @@ -44,4 +52,5 @@ private: bool _tolerant; }; + #endif |
