std::shared_ptr
[dcpomatic.git] / src / lib / raw_image_proxy.h
index a247d7610b4489b2198e24c5cffb4127eb14bf6c..7cd9491fa25181da37a3a570a2f80a1723fefc6c 100644 (file)
 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 send_binary (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