summaryrefslogtreecommitdiff
path: root/src/lib/raw_image_proxy.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/raw_image_proxy.h')
-rw-r--r--src/lib/raw_image_proxy.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/raw_image_proxy.h b/src/lib/raw_image_proxy.h
index 7971d4a10..7cd9491fa 100644
--- a/src/lib/raw_image_proxy.h
+++ b/src/lib/raw_image_proxy.h
@@ -26,20 +26,20 @@
class RawImageProxy : public ImageProxy
{
public:
- explicit RawImageProxy (boost::shared_ptr<Image>);
- RawImageProxy (boost::shared_ptr<cxml::Node> xml, boost::shared_ptr<Socket> socket);
+ explicit RawImageProxy (std::shared_ptr<Image>);
+ RawImageProxy (std::shared_ptr<cxml::Node> xml, std::shared_ptr<Socket> socket);
Result image (
boost::optional<dcp::Size> size = boost::optional<dcp::Size> ()
) const;
void add_metadata (xmlpp::Node *) const;
- void write_to_socket (boost::shared_ptr<Socket>) const;
- bool same (boost::shared_ptr<const ImageProxy>) const;
+ void write_to_socket (std::shared_ptr<Socket>) const;
+ bool same (std::shared_ptr<const ImageProxy>) const;
size_t memory_used () const;
private:
- boost::shared_ptr<Image> _image;
+ std::shared_ptr<Image> _image;
};
#endif