diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-12-18 16:11:53 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-12-18 16:12:49 +0100 |
| commit | 16cf80a019cc9df15580e0fb21b5d340a58c0b94 (patch) | |
| tree | 36935f8ba276cee407bc6195c0536c0abc105cd4 /src/lib/film.cc | |
| parent | 61fc1bcdf1c54d3ee7cadb9a600e2385b636e03e (diff) | |
Add set_isdcf_date() allowing removal of some friends.
Diffstat (limited to 'src/lib/film.cc')
| -rw-r--r-- | src/lib/film.cc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/lib/film.cc b/src/lib/film.cc index 56d7b47a6..0e9c096fc 100644 --- a/src/lib/film.cc +++ b/src/lib/film.cc @@ -1383,6 +1383,13 @@ Film::set_isdcf_date_today() } +void +Film::set_isdcf_date(boost::gregorian::date date) +{ + _isdcf_date = std::move(date); +} + + boost::filesystem::path Film::j2c_path(int reel, Frame frame, Eyes eyes, bool tmp) const { |
