Logging improvements to allow prettier displays in the server GUI.
[dcpomatic.git] / src / lib / position_image.h
index dbd3c600e46ffcf8183a20ad9bf5b227947c0df6..e3a091b371639c024f8eecbdaafebcc440676fd0 100644 (file)
@@ -21,6 +21,7 @@
 #define DCPOMATIC_POSITION_IMAGE_H
 
 #include "position.h"
+#include <boost/shared_ptr.hpp>
 
 class Image;
 
@@ -28,14 +29,16 @@ class PositionImage
 {
 public:
        PositionImage () {}
-       
+
        PositionImage (boost::shared_ptr<Image> i, Position<int> p)
                : image (i)
                , position (p)
        {}
-       
+
        boost::shared_ptr<Image> image;
        Position<int> position;
+
+       bool same (PositionImage const & other) const;
 };
 
 #endif