Merge branch 'master' into content-rework-take5
[dcpomatic.git] / src / lib / imagemagick_content.cc
index d096bff847f199fd68b852cc55e9dbbc463135ec..cb712b417fa3bb73f4b88649804ef6fe3c08a5e7 100644 (file)
@@ -1,9 +1,11 @@
+#include <libcxml/cxml.h>
 #include "imagemagick_content.h"
 #include "compose.hpp"
 
 #include "i18n.h"
 
 using std::string;
+using boost::shared_ptr;
 
 ImageMagickContent::ImageMagickContent (boost::filesystem::path f)
        : Content (f)
@@ -13,6 +15,13 @@ ImageMagickContent::ImageMagickContent (boost::filesystem::path f)
        _video_length = 10 * 24;
 }
 
+ImageMagickContent::ImageMagickContent (shared_ptr<const cxml::Node> node)
+       : Content (node)
+       , VideoContent (node)
+{
+       
+}
+
 string
 ImageMagickContent::summary () const
 {