Logging improvements to allow prettier displays in the server GUI.
[dcpomatic.git] / src / lib / raw_image_proxy.h
index a6f777eb3d251c1bcafa5a0f59e4a9990cc8ce8d..71c8df30bab4ce5a1ad029944e7d0b3cc93a2205 100644 (file)
@@ -28,10 +28,11 @@ public:
        RawImageProxy (boost::shared_ptr<Image>);
        RawImageProxy (boost::shared_ptr<cxml::Node> xml, boost::shared_ptr<Socket> socket);
 
-       boost::shared_ptr<Image> image () const;
+       boost::shared_ptr<Image> image (boost::optional<dcp::NoteHandler> note = boost::optional<dcp::NoteHandler> ()) const;
        void add_metadata (xmlpp::Node *) const;
        void send_binary (boost::shared_ptr<Socket>) const;
-       
+       bool same (boost::shared_ptr<const ImageProxy>) const;
+
 private:
        boost::shared_ptr<Image> _image;
 };