X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fposition_image.h;h=e3a091b371639c024f8eecbdaafebcc440676fd0;hb=f36136e70efbc19255142319a1676f25fa55f780;hp=dbd3c600e46ffcf8183a20ad9bf5b227947c0df6;hpb=7b2054e2a73844450b5b55c5788c02af671812ce;p=dcpomatic.git diff --git a/src/lib/position_image.h b/src/lib/position_image.h index dbd3c600e..e3a091b37 100644 --- a/src/lib/position_image.h +++ b/src/lib/position_image.h @@ -21,6 +21,7 @@ #define DCPOMATIC_POSITION_IMAGE_H #include "position.h" +#include class Image; @@ -28,14 +29,16 @@ class PositionImage { public: PositionImage () {} - + PositionImage (boost::shared_ptr i, Position p) : image (i) , position (p) {} - + boost::shared_ptr image; Position position; + + bool same (PositionImage const & other) const; }; #endif