No-op: remove all trailing whitespace.
[dcpomatic.git] / src / lib / image_subtitle.h
index 6a4f902e6f38f259a1ccbced8c1dcc66c9b3aad1..217f70fb27db0e20c3394df1114b1536fa17730a 100644 (file)
 
 */
 
+#ifndef DCPOMATIC_IMAGE_SUBTITLE_H
+#define DCPOMATIC_IMAGE_SUBTITLE_H
+
+#include "rect.h"
+
 class Image;
 
 class ImageSubtitle
@@ -26,7 +31,7 @@ public:
                : image (i)
                , rectangle (r)
        {}
-       
+
        boost::shared_ptr<Image> image;
        /** Area that the subtitle covers on its corresponding video, expressed in
         *  proportions of the image size; e.g. rectangle.x = 0.5 would mean that
@@ -37,3 +42,5 @@ public:
         */
        dcpomatic::Rect<double> rectangle;
 };
+
+#endif