summaryrefslogtreecommitdiff
path: root/src/asset.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/asset.h')
-rw-r--r--src/asset.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/asset.h b/src/asset.h
index 88c7d1d1..0f840b00 100644
--- a/src/asset.h
+++ b/src/asset.h
@@ -43,7 +43,6 @@
#include "object.h"
#include "types.h"
-#include "pkl.h"
#include <boost/filesystem.hpp>
#include <boost/function.hpp>
#include <boost/optional.hpp>
@@ -60,6 +59,9 @@ struct asset_test;
namespace dcp {
+class PKLAsset;
+
+
/** @class Asset
* @brief Parent class for DCP assets, i.e. picture, sound, subtitles, closed captions, CPLs, fonts
*
@@ -91,7 +93,7 @@ public:
virtual void write_to_assetmap (xmlpp::Node* node, boost::filesystem::path root) const;
- virtual void add_to_pkl (std::shared_ptr<PKL> pkl, boost::filesystem::path root) const;
+ virtual void add_to_pkl (std::vector<PKLAsset>& assets, boost::filesystem::path root, dcp::Standard standard) const;
/** @return the most recent disk file used to read or write this asset, if there is one */
boost::optional<boost::filesystem::path> file () const {