diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-09-13 23:43:12 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-09-13 23:43:12 +0200 |
| commit | c1d3f6f4f645e76302ca4262de3517497fa1e14b (patch) | |
| tree | 1e12c089628be8bb798b425ef78865773b6b7e2e /src/lib/film.h | |
| parent | 73747a031e35ab8884aa16ebd3c8721dfb0391bc (diff) | |
| parent | 4f850f9958beacd8d2b39fda1941b68ffb94b2f0 (diff) | |
Merge remote-tracking branch 'origin/main' into v2.17.x
Diffstat (limited to 'src/lib/film.h')
| -rw-r--r-- | src/lib/film.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/lib/film.h b/src/lib/film.h index 12872caf1..815c6ae74 100644 --- a/src/lib/film.h +++ b/src/lib/film.h @@ -89,6 +89,11 @@ class InfoFileHandle public: InfoFileHandle (boost::mutex& mutex, boost::filesystem::path file, bool read); + InfoFileHandle(InfoFileHandle const&) = delete; + InfoFileHandle& operator=(InfoFileHandle const&) = delete; + InfoFileHandle(InfoFileHandle&&) = delete; + InfoFileHandle& operator=(InfoFileHandle&&) = delete; + dcp::File& get () { return _file; } |
