summaryrefslogtreecommitdiff
path: root/src/openjpeg_image.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-11-08 13:23:03 +0000
committerCarl Hetherington <cth@carlh.net>2016-11-08 13:23:03 +0000
commit859c0627eae471aa1282c6ba0bb7cec9a16c745f (patch)
treeedb9579ad8e95d27b436be3e1119dd0bda35b2c9 /src/openjpeg_image.h
parent880c6f67ca3637c54c97c51081e0649743292af3 (diff)
parent77d3d8217a55e100a45fb65d489875c6a9b1b620 (diff)
Merge branch '1.0' of git.carlh.net:git/libdcp into 1.0
Diffstat (limited to 'src/openjpeg_image.h')
-rw-r--r--src/openjpeg_image.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/openjpeg_image.h b/src/openjpeg_image.h
index 20391e2d..e789cd40 100644
--- a/src/openjpeg_image.h
+++ b/src/openjpeg_image.h
@@ -45,15 +45,16 @@ namespace dcp {
/** @class OpenJPEGImage
* @brief A wrapper of libopenjpeg's opj_image_t.
*/
-class OpenJPEGImage : public boost::noncopyable
+class OpenJPEGImage
{
public:
explicit OpenJPEGImage (opj_image_t *);
+ explicit OpenJPEGImage (OpenJPEGImage const & other);
explicit OpenJPEGImage (Size);
~OpenJPEGImage ();
int* data (int) const;
- dcp::Size size () const;
+ Size size () const;
int precision (int component) const;
bool srgb () const;