diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-11-08 13:23:03 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-11-08 13:23:03 +0000 |
| commit | 859c0627eae471aa1282c6ba0bb7cec9a16c745f (patch) | |
| tree | edb9579ad8e95d27b436be3e1119dd0bda35b2c9 /src/openjpeg_image.h | |
| parent | 880c6f67ca3637c54c97c51081e0649743292af3 (diff) | |
| parent | 77d3d8217a55e100a45fb65d489875c6a9b1b620 (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.h | 5 |
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; |
