Remove use of boost::noncopyable.
[dcpomatic.git] / src / lib / butler.h
index 8c7f554cb800f4ef94a4a40278463748616cc8f8..ac83cecec7ebedff3afacaee84b9a9834c1e5455 100644 (file)
@@ -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 {