diff options
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; } |
