Allow e.g. larger DKDMs for CPLs with 40+ unique sound and picture assets.
[libdcp.git] / src / subtitle_string.h
index fc88c15b475ae7ba29e10e9b5e59017398c97f9e..c274152b3bd992bc835fd4a32376b71a6f766e0a 100644 (file)
@@ -137,7 +137,7 @@ public:
                _text = t;
        }
 
-       void set_colour (dcp::Colour c) {
+       void set_colour (Colour c) {
                _colour = c;
        }
 
@@ -145,7 +145,7 @@ public:
                _effect = e;
        }
 
-       void set_effect_colour (dcp::Colour c) {
+       void set_effect_colour (Colour c) {
                _effect_colour = c;
        }
 
@@ -172,6 +172,7 @@ private:
 };
 
 bool operator== (SubtitleString const & a, SubtitleString const & b);
+bool operator!= (SubtitleString const & a, SubtitleString const & b);
 std::ostream& operator<< (std::ostream& s, SubtitleString const & sub);
 
 }