diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-12-27 22:52:21 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-04-15 10:59:34 +0200 |
| commit | c1175b5ce81a6bad56e3f372c0f72cc55595f8f2 (patch) | |
| tree | eb163262f5d07430e6c2172a4424c389da298b49 /src/verify.h | |
| parent | 1797b2b443168101cdd7250a51d75dfdd390b389 (diff) | |
Cleanup: use std::function instead of boost::function.
Diffstat (limited to 'src/verify.h')
| -rw-r--r-- | src/verify.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/verify.h b/src/verify.h index 77c5392b..4669f777 100644 --- a/src/verify.h +++ b/src/verify.h @@ -672,8 +672,8 @@ struct VerifyResult VerifyResult verify( std::vector<boost::filesystem::path> directories, std::vector<dcp::DecryptedKDM> kdms, - boost::function<void (std::string, boost::optional<boost::filesystem::path>)> stage, - boost::function<void (float)> progress, + std::function<void (std::string, boost::optional<boost::filesystem::path>)> stage, + std::function<void (float)> progress, VerificationOptions options = {}, boost::optional<boost::filesystem::path> xsd_dtd_directory = boost::optional<boost::filesystem::path>() ); |
