Reasonably straightforward stuff; main things are adding
[dcpomatic.git] / src / lib / image_content.h
index a1b1437c811fb391154b222466b7fa22a27b5258..dcdb7b526660d53b7b23bf411874637be737100e 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2013-2014 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2013-2016 Carl Hetherington <cth@carlh.net>
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
 #ifndef DCPOMATIC_IMAGE_CONTENT_H
 #define DCPOMATIC_IMAGE_CONTENT_H
 
-#include <boost/enable_shared_from_this.hpp>
-#include "video_content.h"
+#include "content.h"
 
-namespace cxml {
-       class Node;
-}
-
-class ImageContent : public VideoContent
+class ImageContent : public Content
 {
 public:
        ImageContent (boost::shared_ptr<const Film>, boost::filesystem::path);
@@ -44,10 +39,10 @@ public:
        DCPTime full_length () const;
 
        std::string identifier () const;
-       
-       void set_video_length (ContentTime);
+
+       void set_default_colour_conversion ();
+
        bool still () const;
-       void set_video_frame_rate (float);
 };
 
 #endif