summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-06-02 09:56:56 +0100
committerCarl Hetherington <cth@carlh.net>2016-06-02 09:56:56 +0100
commit66bf8744e2d1c29d1169005085792411f8860b6a (patch)
tree36e8a4a5ac316201a953073d4827ec381aeffc9d /src
parent76276c8d9cb6c1337ecdd02f6d7c026f196bba58 (diff)
Missing noncopyable.
Diffstat (limited to 'src')
-rw-r--r--src/asset_reader.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/asset_reader.h b/src/asset_reader.h
index 01eddba6..e02ab39c 100644
--- a/src/asset_reader.h
+++ b/src/asset_reader.h
@@ -20,6 +20,8 @@
#ifndef LIBDCP_ASSET_READER_H
#define LIBDCP_ASSET_READER_H
+#include <boost/noncopyable.hpp>
+
namespace ASDCP {
class AESDecContext;
}
@@ -28,7 +30,7 @@ namespace dcp {
class MXF;
-class AssetReader
+class AssetReader : public boost::noncopyable
{
public:
AssetReader (MXF const * mxf);