diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-06-09 22:38:58 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-06-10 23:12:13 +0200 |
| commit | e68386830c8812f80cb4b3af9871170226b916b4 (patch) | |
| tree | 4cfae4bb14134d6b58e0dbc4492b6abd6991d51b /src/lib/film.h | |
| parent | 3d9c0674236a425f0be5e9caff5e23f59e7c037a (diff) | |
Add Film::last_written_by_earlier_than()
Diffstat (limited to 'src/lib/film.h')
| -rw-r--r-- | src/lib/film.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib/film.h b/src/lib/film.h index 5318d6a12..72d6d5e8d 100644 --- a/src/lib/film.h +++ b/src/lib/film.h @@ -210,6 +210,8 @@ public: return _tolerant; } + bool last_written_by_earlier_than(int major, int minor, int micro) const; + /** Identifiers for the parts of our state; used for signalling changes. */ @@ -516,6 +518,8 @@ private: */ boost::optional<boost::filesystem::path> _directory; + boost::optional<std::string> _last_written_by; + /** Name for DCP-o-matic */ std::string _name; /** True if a auto-generated ISDCF-compliant name should be used for our DCP */ |
