diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-04-17 22:29:14 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-04-17 22:29:14 +0200 |
| commit | 8902a7adb63e2dac24e877ed1035bf344397c260 (patch) | |
| tree | 844ec00d2ffb5b50811e53d672a0a7690de10758 /src | |
| parent | 4230f0381715f8f6f9e85374ea0e74fb3104a18d (diff) | |
Add a missing noncopyable.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/player_video.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/player_video.h b/src/lib/player_video.h index a8f12a082..1a4a01d58 100644 --- a/src/lib/player_video.h +++ b/src/lib/player_video.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2013-2019 Carl Hetherington <cth@carlh.net> + Copyright (C) 2013-2020 Carl Hetherington <cth@carlh.net> This file is part of DCP-o-matic. @@ -32,6 +32,7 @@ extern "C" { #include <boost/shared_ptr.hpp> #include <boost/weak_ptr.hpp> #include <boost/thread/mutex.hpp> +#include <boost/noncopyable.hpp> class Image; class ImageProxy; @@ -42,7 +43,7 @@ class Socket; * bits still their raw form. We may want to combine the bits on a remote machine, * or maybe not even bother to combine them at all. */ -class PlayerVideo +class PlayerVideo : public boost::noncopyable { public: PlayerVideo ( |
