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/butler.h | |
| parent | 94695fc3214917ad7310af36270ce1e0b88cdfa3 (diff) | |
Remove use of boost::noncopyable.
Diffstat (limited to 'src/lib/butler.h')
| -rw-r--r-- | src/lib/butler.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lib/butler.h b/src/lib/butler.h index 8c7f554cb..ac83cecec 100644 --- a/src/lib/butler.h +++ b/src/lib/butler.h @@ -32,7 +32,7 @@ class Player; class PlayerVideo; -class Butler : public ExceptionStore, public boost::noncopyable +class Butler : public ExceptionStore { public: Butler ( @@ -48,6 +48,9 @@ public: ~Butler (); + Butler (Butler const&) = delete; + Butler& operator= (Butler const&) = delete; + void seek (dcpomatic::DCPTime position, bool accurate); class Error { |
