diff options
| -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 43a41ad45..92e224ad1 100644 --- a/src/lib/film.h +++ b/src/lib/film.h @@ -86,6 +86,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; } |
