X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Ffilm.h;h=bb868ffad346c7fa2436191e6152f6570486b2d8;hb=62f9b78a2eb5f0fc6b9028264bac6ad501d83309;hp=00c3f71c5b721516d89e76f9576dc8d09bf45c96;hpb=5f9608c9d15a269d890af222fc3d28a253d2b1e9;p=dcpomatic.git diff --git a/src/lib/film.h b/src/lib/film.h index 00c3f71c5..bb868ffad 100644 --- a/src/lib/film.h +++ b/src/lib/film.h @@ -93,12 +93,15 @@ private: * * The content of a Film is held in a Playlist (created and managed by the Film). */ -class Film : public std::enable_shared_from_this, public Signaller, public boost::noncopyable +class Film : public std::enable_shared_from_this, public Signaller { public: explicit Film (boost::optional dir); ~Film (); + Film (Film const&) = delete; + Film& operator= (Film const&) = delete; + std::shared_ptr info_file_handle (dcpomatic::DCPTimePeriod period, bool read) const; boost::filesystem::path j2c_path (int, Frame, Eyes, bool) const; boost::filesystem::path internal_video_asset_dir () const;