X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fposition_image.h;h=e3a091b371639c024f8eecbdaafebcc440676fd0;hb=e60bb3e51bd1508b149e6b8f6608f09b5196ae26;hp=dbd3c600e46ffcf8183a20ad9bf5b227947c0df6;hpb=cc27c2716f755305d67f1e1ba828ecf37f8405dd;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