diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-11-07 03:03:29 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-11-22 23:59:43 +0100 |
| commit | 0254f2d12acb2ff8d770b4e47dc15599d145fe17 (patch) | |
| tree | f7240c24914ce89920f5f36636f2d771a417798c /src/lib/raw_image_proxy.h | |
| parent | 0060e0f1969823e4329b15a92e130c8790a2e9d5 (diff) | |
Put Image into the dcpomatic namespace.
Diffstat (limited to 'src/lib/raw_image_proxy.h')
| -rw-r--r-- | src/lib/raw_image_proxy.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/raw_image_proxy.h b/src/lib/raw_image_proxy.h index c9885654b..63f2d834c 100644 --- a/src/lib/raw_image_proxy.h +++ b/src/lib/raw_image_proxy.h @@ -29,11 +29,11 @@ class RawImageProxy : public ImageProxy { public: - explicit RawImageProxy (std::shared_ptr<Image>); + explicit RawImageProxy (std::shared_ptr<dcpomatic::Image>); RawImageProxy (std::shared_ptr<cxml::Node> xml, std::shared_ptr<Socket> socket); Result image ( - Image::Alignment alignment, + dcpomatic::Image::Alignment alignment, boost::optional<dcp::Size> size = boost::optional<dcp::Size> () ) const; @@ -43,7 +43,7 @@ public: size_t memory_used () const; private: - std::shared_ptr<Image> _image; + std::shared_ptr<dcpomatic::Image> _image; }; |
