summaryrefslogtreecommitdiff
path: root/src/lib/raw_image_proxy.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-11-07 03:03:29 +0100
committerCarl Hetherington <cth@carlh.net>2021-11-22 23:59:43 +0100
commit0254f2d12acb2ff8d770b4e47dc15599d145fe17 (patch)
treef7240c24914ce89920f5f36636f2d771a417798c /src/lib/raw_image_proxy.h
parent0060e0f1969823e4329b15a92e130c8790a2e9d5 (diff)
Put Image into the dcpomatic namespace.
Diffstat (limited to 'src/lib/raw_image_proxy.h')
-rw-r--r--src/lib/raw_image_proxy.h6
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;
};