diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-04-24 22:38:52 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-04-24 22:38:52 +0200 |
| commit | 85c565b56de05e93617a8dfd633d6f9d6e9cb30a (patch) | |
| tree | ecde1c29df68d91c749fd33ea7e4175a3a3716d6 /src/metadata.h | |
| parent | ec520e1a5ed27b3eb414627acf7ad7f9cd661346 (diff) | |
Try to remove the PKL object, and make it so that we don't keepdcp-editor2
the PKL assets around after reading them.
But verification needs to see those assets, to check the hashes.
Diffstat (limited to 'src/metadata.h')
| -rw-r--r-- | src/metadata.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/metadata.h b/src/metadata.h index 364cb388..7b490ab6 100644 --- a/src/metadata.h +++ b/src/metadata.h @@ -41,6 +41,8 @@ #define LIBDCP_METADATA_H +#include "types.h" +#include <boost/optional.hpp> #include <string> @@ -77,7 +79,20 @@ public: }; +class PKLMetadata +{ +public: + std::string id; + boost::optional<dcp::Standard> standard; + boost::optional<std::string> annotation_text; + std::string issue_date; + std::string issuer; + std::string creator; +}; + + } #endif + |
