XML metadata and some other bits.
[dcpomatic.git] / src / lib / imagemagick_content.h
1 #include "video_content.h"
2
3 namespace cxml {
4         class Node;
5 }
6
7 class ImageMagickContent : public VideoContent
8 {
9 public:
10         ImageMagickContent (boost::filesystem::path);
11         ImageMagickContent (boost::shared_ptr<const cxml::Node>);
12
13         std::string summary () const;
14
15         static bool valid_file (boost::filesystem::path);
16 };