diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-04-29 08:31:23 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-04-29 08:31:23 +0200 |
| commit | b249700e1da7dd6631a8b4440587f4093a2bdef1 (patch) | |
| tree | 71f88855e72b11f927d194f0676bac93845d26be /src/lib/film.h | |
| parent | 94695fc3214917ad7310af36270ce1e0b88cdfa3 (diff) | |
Remove use of boost::noncopyable.
Diffstat (limited to 'src/lib/film.h')
| -rw-r--r-- | src/lib/film.h | 5 |
1 files changed, 4 insertions, 1 deletions
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<Film>, public Signaller, public boost::noncopyable +class Film : public std::enable_shared_from_this<Film>, public Signaller { public: explicit Film (boost::optional<boost::filesystem::path> dir); ~Film (); + Film (Film const&) = delete; + Film& operator= (Film const&) = delete; + std::shared_ptr<InfoFileHandle> 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; |
