X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fposition_image.h;h=ee352647ca83826e0e359d857ad2928a9d96ea4b;hb=fe933ebb2c55b4235fcba5d02af2ba91c272fc88;hp=3e6d833e78a996a32b301df7446d0d85f0aa3313;hpb=3828baf56467224f5d44049bf1e7a7ed11f43a05;p=dcpomatic.git diff --git a/src/lib/position_image.h b/src/lib/position_image.h index 3e6d833e7..ee352647c 100644 --- a/src/lib/position_image.h +++ b/src/lib/position_image.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2014 Carl Hetherington + Copyright (C) 2014-2021 Carl Hetherington This file is part of DCP-o-matic. @@ -18,28 +18,33 @@ */ + #ifndef DCPOMATIC_POSITION_IMAGE_H #define DCPOMATIC_POSITION_IMAGE_H + #include "position.h" -#include +#include + class Image; + class PositionImage { public: PositionImage () {} - PositionImage (boost::shared_ptr i, Position p) + PositionImage (std::shared_ptr i, Position p) : image (i) , position (p) {} - boost::shared_ptr image; + std::shared_ptr image; Position position; bool same (PositionImage const & other) const; }; + #endif