summaryrefslogtreecommitdiff
path: root/src/lib/image_proxy.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/image_proxy.h')
-rw-r--r--src/lib/image_proxy.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/lib/image_proxy.h b/src/lib/image_proxy.h
index 08516e718..446fb8334 100644
--- a/src/lib/image_proxy.h
+++ b/src/lib/image_proxy.h
@@ -33,7 +33,10 @@ extern "C" {
#include <boost/optional.hpp>
#include <boost/utility.hpp>
-class Image;
+namespace dcpomatic {
+ class Image;
+}
+
class Socket;
namespace xmlpp {
@@ -61,20 +64,20 @@ public:
virtual ~ImageProxy () {}
struct Result {
- Result (boost::shared_ptr<Image> image_, int log2_scaling_)
+ Result (boost::shared_ptr<dcpomatic::Image> image_, int log2_scaling_)
: image (image_)
, log2_scaling (log2_scaling_)
, error (false)
{}
- Result (boost::shared_ptr<Image> image_, int log2_scaling_, bool error_)
+ Result (boost::shared_ptr<dcpomatic::Image> image_, int log2_scaling_, bool error_)
: image (image_)
, log2_scaling (log2_scaling_)
, error (error_)
{}
/** Image (which will be aligned) */
- boost::shared_ptr<Image> image;
+ boost::shared_ptr<dcpomatic::Image> image;
/** log2 of any scaling down that has already been applied to the image;
* e.g. if the image is already half the size of the original, this value
* will be 1.