summaryrefslogtreecommitdiff
path: root/src/verify.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/verify.h')
-rw-r--r--src/verify.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/verify.h b/src/verify.h
index 2adb47d2..77c5392b 100644
--- a/src/verify.h
+++ b/src/verify.h
@@ -58,6 +58,9 @@
namespace dcp {
+class DCP;
+
+
class VerificationNote
{
public:
@@ -659,7 +662,14 @@ struct VerificationOptions
};
-std::vector<VerificationNote> verify (
+struct VerifyResult
+{
+ std::vector<VerificationNote> notes;
+ std::vector<std::shared_ptr<dcp::DCP>> dcps;
+};
+
+
+VerifyResult verify(
std::vector<boost::filesystem::path> directories,
std::vector<dcp::DecryptedKDM> kdms,
boost::function<void (std::string, boost::optional<boost::filesystem::path>)> stage,