Remove log from ImageProxy hierarchy.
[dcpomatic.git] / src / lib / raw_image_proxy.cc
index 7e0688d13eee5beacb75a1810d7997c3e934babb..8e8bf88248be5bf2b70e2a2f1055283850e6b9b5 100644 (file)
@@ -31,15 +31,13 @@ extern "C" {
 using std::string;
 using boost::shared_ptr;
 
-RawImageProxy::RawImageProxy (shared_ptr<Image> image, shared_ptr<Log> log)
-       : ImageProxy (log)
-       , _image (image)
+RawImageProxy::RawImageProxy (shared_ptr<Image> image)
+       : _image (image)
 {
 
 }
 
-RawImageProxy::RawImageProxy (shared_ptr<cxml::Node> xml, shared_ptr<Socket> socket, shared_ptr<Log> log)
-       : ImageProxy (log)
+RawImageProxy::RawImageProxy (shared_ptr<cxml::Node> xml, shared_ptr<Socket> socket)
 {
        dcp::Size size (
                xml->number_child<int> ("Width"), xml->number_child<int> ("Height")