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/j2k_encoder.h | |
| parent | 94695fc3214917ad7310af36270ce1e0b88cdfa3 (diff) | |
Remove use of boost::noncopyable.
Diffstat (limited to 'src/lib/j2k_encoder.h')
| -rw-r--r-- | src/lib/j2k_encoder.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lib/j2k_encoder.h b/src/lib/j2k_encoder.h index 06b4d429c..cea965309 100644 --- a/src/lib/j2k_encoder.h +++ b/src/lib/j2k_encoder.h @@ -55,12 +55,15 @@ class PlayerVideo; * This class keeps a queue of frames to be encoded and distributes * the work around threads and encoding servers. */ -class J2KEncoder : public boost::noncopyable, public ExceptionStore, public std::enable_shared_from_this<J2KEncoder> +class J2KEncoder : public ExceptionStore, public std::enable_shared_from_this<J2KEncoder> { public: J2KEncoder (std::shared_ptr<const Film> film, std::shared_ptr<Writer> writer); ~J2KEncoder (); + J2KEncoder (J2KEncoder const&) = delete; + J2KEncoder& operator= (J2KEncoder const&) = delete; + /** Called to indicate that a processing run is about to begin */ void begin (); |
