diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-03-20 23:40:58 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-03-20 23:40:58 +0000 |
| commit | 03246708c1ee9c5331eac7d058627655939e30d1 (patch) | |
| tree | 877b655906ce346b63f49e52fa78e3629f6e3217 /src/verify.h | |
| parent | 010b38e7ac7779e9a9c346361fe7e0a4fda202c8 (diff) | |
More DCP verification bits.
Diffstat (limited to 'src/verify.h')
| -rw-r--r-- | src/verify.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/verify.h b/src/verify.h index 3538722e..f5b21763 100644 --- a/src/verify.h +++ b/src/verify.h @@ -35,6 +35,8 @@ #define LIBDCP_VERIFY_H #include <boost/filesystem.hpp> +#include <boost/function.hpp> +#include <boost/optional.hpp> #include <string> #include <list> #include <vector> @@ -71,7 +73,11 @@ private: std::string _note; }; -std::list<VerificationNote> verify (std::vector<boost::filesystem::path> directories); +std::list<VerificationNote> verify ( + std::vector<boost::filesystem::path> directories, + boost::function<void (std::string, boost::optional<boost::filesystem::path>)> stage, + boost::function<void (float)> progress + ); } |
