blob: 99b61451259d119efebaa23f3f5258097dd2b9c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include "video_content.h"
namespace cxml {
class Node;
}
class ImageMagickContent : public VideoContent
{
public:
ImageMagickContent (boost::filesystem::path);
ImageMagickContent (boost::shared_ptr<const cxml::Node>);
std::string summary () const;
static bool valid_file (boost::filesystem::path);
};
|